Searched refs:idx (Results 51 - 75 of 280) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp184 Symbol* generic_signature() const { int idx = generic_signature_index(); return ((idx != 0) ? constants()->symbol_at(idx) : (Symbol*)NULL); } local
873 u2 start_pc(int idx) const {
874 assert(idx < _length, "out of bounds");
875 return _table[idx].start_pc;
878 void set_start_pc(int idx, u2 value) {
879 assert(idx < _length, "out of bounds");
880 _table[idx].start_pc = value;
883 u2 end_pc(int idx) cons
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/cmm/lcms/
H A DLCMSTransform.java222 int idx;
241 idx = 0;
246 srcLine[idx++] = (byte)
259 idx = 0;
262 dstColor[i] = ((float) (dstLine[idx++] & 0xff)) *
283 int idx;
302 idx = 0;
307 srcLine[idx++] = (short)
320 idx = 0;
323 dstColor[i] = ((float) (dstLine[idx
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A DvmError_bsd.cpp70 static void save_signal(int idx, int sig) argument
74 resettedSigflags[idx] = sa.sa_flags;
75 resettedSighandler[idx] = (sa.sa_flags & SA_SIGINFO)
/openjdk7/hotspot/src/os/linux/vm/
H A DvmError_linux.cpp70 static void save_signal(int idx, int sig) argument
74 resettedSigflags[idx] = sa.sa_flags;
75 resettedSighandler[idx] = (sa.sa_flags & SA_SIGINFO)
/openjdk7/hotspot/src/os/solaris/vm/
H A DvmError_solaris.cpp66 static void save_signal(int idx, int sig) argument
70 resettedSigflags[idx] = sa.sa_flags;
71 resettedSighandler[idx] = (sa.sa_flags & SA_SIGINFO)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DXmlOutputAbstractImpl.java93 short idx = name.nsUriIndex;
94 if(idx==-1)
97 attribute( nsUriIndex2prefixIndex[idx], name.localName, value );
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DPrimitiveArrayListerBoolean.java49 int idx=0;
51 return idx<objects.length;
55 return objects[idx++];
H A DPrimitiveArrayListerByte.java49 int idx=0;
51 return idx<objects.length;
55 return objects[idx++];
H A DPrimitiveArrayListerCharacter.java49 int idx=0;
51 return idx<objects.length;
55 return objects[idx++];
H A DPrimitiveArrayListerDouble.java49 int idx=0;
51 return idx<objects.length;
55 return objects[idx++];
H A DPrimitiveArrayListerFloat.java49 int idx=0;
51 return idx<objects.length;
55 return objects[idx++];
H A DPrimitiveArrayListerInteger.java49 int idx=0;
51 return idx<objects.length;
55 return objects[idx++];
H A DPrimitiveArrayListerLong.java49 int idx=0;
51 return idx<objects.length;
55 return objects[idx++];
H A DPrimitiveArrayListerShort.java49 int idx=0;
51 return idx<objects.length;
55 return objects[idx++];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DXsiNilLoader.java56 int idx = ea.atts.getIndex(WellKnownNamespace.XML_SCHEMA_INSTANCE,"nil");
58 if (idx!=-1) {
59 Boolean b = DatatypeConverterImpl._parseBoolean(ea.atts.getValue(idx));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DXSModelGroup.java76 XSParticle getChild(int idx); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java459 int[] idx = new int[1];
467 idx[0] = 0;
468 if (length != idx[0] && s.charAt(idx[0]) == '-') {
469 idx[0]++;
475 if (length != idx[0] && s.charAt(idx[0]++) != 'P') {
476 throw new IllegalArgumentException(s); //,idx[0]-1);
486 while (length != idx[0]
487 && isDigit(s.charAt(idx[
570 parsePiece(String whole, int[] idx) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticArgument.cpp194 size_t idx = 0; local
195 while(idx < len && isdigit(str[idx])) {
196 idx++;
198 if (idx == len) {
208 } else if(len - idx > 2) {
212 strncpy(_value._unit, &str[idx], len - idx);
218 _value._unit[len-idx] = '\0';
/openjdk7/jdk/src/windows/native/java/util/
H A DTimeZone_md.c430 char *start, *idx, *endp; local
434 start = idx = lineBuffer;
440 if (*idx == '#' || *idx == '\n') {
446 while (*idx && *idx != ':') {
447 if (++idx >= endp) {
451 if (*idx == '\0') {
454 *idx++ = '\0';
455 start = idx;
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DNode.java105 public int idx() { method in class:Node
142 set.set(idx());
159 if (!set.get(n.idx())) {
161 set.set(n.idx());
214 out.print(idx());
223 out.print(in(i).idx());
237 out.print(in(i).idx());
260 out.print(u.idx());
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.hpp127 virtual uint match_edge(uint idx) const;
147 virtual uint match_edge(uint idx) const;
166 virtual uint match_edge(uint idx) const;
180 virtual uint match_edge(uint idx) const;
273 int monitor_box_offset(int idx) const { return monoff() + (idx << logMonitorEdges) + 0; }
274 int monitor_obj_offset(int idx) const { return monoff() + (idx << logMonitorEdges) + 1; }
348 void verify_input(JVMState* jvms, uint idx) const {
350 Node* n = in(idx);
380 set_stack(JVMState* jvms, uint idx, Node *c) argument
384 set_argument(JVMState* jvms, uint idx, Node *c) argument
[all...]
H A Dmachnode.hpp81 virtual int reg(PhaseRegAlloc *ra_, const Node *node, int idx) const;
87 Register as_Register(PhaseRegAlloc *ra_, const Node *node, int idx) const {
88 return ::as_Register(reg(ra_, node, idx));
93 FloatRegister as_FloatRegister(PhaseRegAlloc *ra_, const Node *node, int idx) const {
94 return ::as_FloatRegister(reg(ra_, node, idx));
101 XMMRegister as_XMMRegister(PhaseRegAlloc *ra_, const Node *node, int idx) const {
102 return ::as_XMMRegister(reg(ra_, node, idx));
115 virtual int base (PhaseRegAlloc *ra_, const Node *node, int idx) const;
116 virtual int index(PhaseRegAlloc *ra_, const Node *node, int idx) const;
119 virtual int disp (PhaseRegAlloc *ra_, const Node *node, int idx) cons
690 set_local(const JVMState* jvms, uint idx, Node *c) argument
694 set_stack(const JVMState* jvms, uint idx, Node *c) argument
698 set_monitor(const JVMState* jvms, uint idx, Node *c) argument
890 ext_format(PhaseRegAlloc *ra, const MachNode *node, int idx, outputStream *st) const argument
917 ext_format(PhaseRegAlloc *ra, const MachNode *node, int idx, outputStream *st) const argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaStructureMember.java116 public void setConstructorPos(int idx) { argument
117 constructorPos = idx;
/openjdk7/jdk/src/solaris/classes/java/io/
H A DUnixFileSystem.java205 int idx = last;
208 while (idx > 0) {
209 char c = path.charAt(idx);
220 if (idx == 0 ||
221 idx >= last - 1 ||
222 path.charAt(idx - 1) == sep) {
227 return path.substring(0, idx);
232 --idx;
/openjdk7/jdk/src/share/classes/java/awt/color/
H A DColorSpace.java506 * @param idx the component index
508 * @throws IllegalArgumentException if <code>idx</code> is
511 public String getName (int idx) { argument
513 if ((idx < 0) || (idx > numComponents - 1)) {
515 "Component index out of range: " + idx);
563 return compName[idx];

Completed in 86 milliseconds

1234567891011>>