Searched defs:idx (Results 1 - 25 of 126) sorted by relevance

123456

/openjdk7/hotspot/test/compiler/7029152/
H A DTest.java35 static int idx = 0; field in class:Test
45 idx = IndexOfTest(str);
47 System.out.println("IndexOf = " + idx);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DXSUnionSimpleType.java36 XSSimpleType getMember(int idx); argument
H A DXSModelGroup.java76 XSParticle getChild(int idx); argument
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DSignatureIterator.java32 private int idx; field in class:SignatureIterator
40 idx = 1;
44 return sig.charAt(idx) == ')';
49 char c = sig.charAt(idx);
51 ++idx;
55 int endIdx = idx;
68 int beginIdx = idx;
69 idx = endIdx + 1;
70 return sig.substring(beginIdx, idx);
79 return sig.substring(idx
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DBaseRow.java73 * the original value of column number <i>idx</i> in this row.
75 * @param idx the index of the element to return
80 public abstract Object getColumnObject(int idx) throws SQLException; argument
88 * @param idx the index of the element to be set
90 * <code>idx</code> to be set
93 public abstract void setColumnObject(int idx, Object obj) throws SQLException; argument
H A DInsertRow.java130 * @param idx the column number of the value to be retrieved;
135 public Object getColumnObject(int idx) throws SQLException { argument
136 if (colsInserted.get(idx - 1) == false) {
139 return (origVals[idx - 1]);
152 * @param idx the number of the column in the insert row to be set;
156 public void setColumnObject(int idx, Object val) { argument
157 origVals[idx - 1] = val;
158 markColInserted(idx - 1);
/openjdk7/hotspot/test/compiler/6930043/
H A DTest6930043.java37 int idx; field in class:Test6930043
44 i_1_ += is[idx = i_2_];
54 // result += is[idx = index];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DAttributesEx.java43 CharSequence getData(int idx); argument
H A DAttributesExImpl.java38 public CharSequence getData(int idx) { argument
39 return getValue(idx);
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DNameNode.java119 * at index idx.
121 NameNode get(DnsName name, int idx) { argument
123 for (int i = idx; i < name.size() && node != null; i++) {
133 * at index idx.
135 NameNode add(DnsName name, int idx) { argument
137 for (int i = idx; i < name.size(); i++) {
/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/ws/server/sei/
H A DEndpointValueSetter.java79 int idx = p.getIndex();
81 if (idx<POOL.length) {
82 return POOL[idx];
84 return new Param(idx);
87 return new HolderParam(idx);
95 protected final int idx; field in class:EndpointValueSetter.Param
97 public Param(int idx) { argument
98 this.idx = idx;
103 args[idx]
110 HolderParam(int idx) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DReaderCharacterIterator.java150 /** Reads chars up to the idx */
151 private void ensure(int idx) throws IOException argument
158 if (idx < buff.length())
162 read(idx + 1 - buff.length());
H A DStreamCharacterIterator.java146 /** Reads chars up to the idx */
147 private void ensure(int idx) throws IOException argument
154 if (idx < buff.length())
159 read(idx + 1 - buff.length());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicLineNumberMapping.java129 private boolean check(Address addr, int idx) { argument
130 BasicLineNumberInfo info = get(idx);
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.cpp46 int idx = 0; local
49 if (idx == _index) {
52 idx ++;
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DValueSetter.java90 int idx = p.getIndex();
92 if(idx==-1)
94 if(idx<POOL.length)
95 return POOL[idx];
97 return new Param(idx);
111 private final int idx; field in class:ValueSetter.Param
113 public Param(int idx) { argument
114 this.idx = idx;
118 Object arg = args[idx];
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DBitArray.java45 private static int subscript(int idx) { argument
46 return idx / BITS_PER_UNIT;
49 private static int position(int idx) { // bits big-endian in each unit argument
50 return 1 << (BITS_PER_UNIT - 1 - (idx % BITS_PER_UNIT));
143 int idx = subscript(index);
147 repn[idx] |= bit;
149 repn[idx] &= ~bit;
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DXSettings.java76 private int idx; field in class:XSettings.Update
103 idx = 0;
106 idx = 4;
113 idx = 8;
125 if (idx + n <= dlen) {
129 throw new IndexOutOfBoundsException("at " + idx
140 int val = data[idx] & 0xff;
142 ++idx;
154 val = ((data[idx + 0] & 0xff) )
155 | ((data[idx
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSQLInputImpl.java76 private int idx; field in class:SQLInputImpl
128 idx = -1;
144 if (++idx >= attrib.length) {
148 return attrib[idx];
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DPackedColorModel.java263 private void DecomposeMask(int mask, int idx, String componentName) { argument
265 int count = nBits[idx];
268 maskArray[idx] = mask;
280 Integer.toHexString(maskArray[idx])+
285 maskOffsets[idx] = off;
289 scaleFactors[idx] = 256.0f;
291 scaleFactors[idx] = 255.0f / ((1 << count) - 1);
/openjdk7/hotspot/src/share/vm/opto/
H A Doptoreg.hpp89 static OptoReg::Name stack2reg( int idx) { argument
90 return Name(stack0() + idx);

Completed in 194 milliseconds

123456