/openjdk7/jdk/src/share/classes/sun/reflect/ |
H A D | SignatureIterator.java | 32 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/solaris/classes/sun/awt/ |
H A D | XSettings.java | 76 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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/ |
H A D | EndpointValueSetter.java | 79 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/jdk/src/share/classes/sun/util/locale/ |
H A D | AsciiUtil.java | 78 int idx = 0; 79 for (; idx < s.length(); idx++) { 80 char c = s.charAt(idx); 85 if (idx == s.length()) { 88 StringBuilder buf = new StringBuilder(s.substring(0, idx)); 89 for (; idx < s.length(); idx++) { 90 buf.append(toLower(s.charAt(idx))); 96 int idx [all...] |
H A D | LocaleUtils.java | 90 int idx = 0; 91 for (; idx < len; idx++) { 92 if (isUpper(s.charAt(idx))) { 96 if (idx == len) { 103 buf[i] = (i < idx) ? c : toLower(c); 110 int idx = 0; 111 for (; idx < len; idx++) { 112 if (isLower(s.charAt(idx))) { [all...] |
H A D | StringTokenIterator.java | 111 for (int idx = start; idx < textlen; idx++) { 112 if (text.charAt(idx) == delimiterChar) { 113 return idx; 118 for (int idx = start; idx < textlen; idx++) { 119 char c = text.charAt(idx); 122 return idx; [all...] |
/openjdk7/hotspot/test/compiler/6875866/ |
H A D | Test.java | 40 int idx = IndexOfTest(str); 41 System.out.println("IndexOf = " + idx); 42 if (idx != 7) {
|
/openjdk7/hotspot/test/compiler/6935535/ |
H A D | Test.java | 41 int idx = IndexOfTest(str); 42 System.out.println("IndexOf(" + "1111111111111xx1x" + ") = " + idx + " in " + str); 43 if (idx != -1) {
|
/openjdk7/hotspot/test/compiler/7029152/ |
H A D | Test.java | 35 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 D | XSUnionSimpleType.java | 36 XSSimpleType getMember(int idx); argument
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/ |
H A D | BuiltInEncodingAlgorithm.java | 67 int idx = 0; 68 for (; idx < length; ++idx) { 69 if (Character.isWhitespace(ch[idx + start])) { 70 if (firstNonWS < idx) { 71 buf.append(ch, firstNonWS + start, idx - firstNonWS); 73 firstNonWS = idx + 1; 76 if (firstNonWS < idx) { 77 buf.append(ch, firstNonWS + start, idx - firstNonWS);
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | regalloc.hpp | 84 void set_bad( uint idx ) { 85 assert( idx < _node_regs_max_index, "Exceeded _node_regs array"); 86 _node_regs[idx].set_bad(); 88 void set1( uint idx, OptoReg::Name reg ) { 89 assert( idx < _node_regs_max_index, "Exceeded _node_regs array"); 90 _node_regs[idx].set1(reg); 92 void set2( uint idx, OptoReg::Name reg ) { 93 assert( idx < _node_regs_max_index, "Exceeded _node_regs array"); 94 _node_regs[idx].set2(reg); 96 void set_pair( uint idx, OptoRe [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
H A D | MarkBits.java | 64 long idx = handle.minus(start) / VM.getVM().getOopSize(); 65 if ((idx < 0) || (idx >= bits.size())) { 69 int intIdx = (int) idx; 81 long idx = handle.minus(start) / VM.getVM().getOopSize(); 82 if ((idx < 0) || (idx >= bits.size())) { 86 int intIdx = (int) idx;
|
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/ |
H A D | BaseRow.java | 73 * 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 D | Row.java | 131 * @param idx the number of the column in this <code>Row</code> object 136 public void initColumnObject(int idx, Object val) { argument 137 origVals[idx - 1] = val; 146 * @param idx the number of the column in this <code>Row</code> object 151 public void setColumnObject(int idx, Object val) { argument 152 currentVals[idx - 1] = val; 153 setColUpdated(idx - 1); 177 * @param idx the index into the <code>BitSet</code> object maintained by 185 public boolean getColUpdated(int idx) { argument 186 return colsChanged.get(idx); 293 setColUpdated(int idx) argument [all...] |
H A D | InsertRow.java | 130 * @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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/ |
H A D | AttributesExImpl.java | 38 public CharSequence getData(int idx) { argument 39 return getValue(idx);
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/ |
H A D | EncodingInfo.java | 197 final int idx = codePoint - m_explFirst; 200 if (m_alreadyKnown[idx]) 201 ret = m_isInEncoding[idx]; 206 m_alreadyKnown[idx] = true; 207 m_isInEncoding[idx] = ret; 244 final int idx = codePoint - m_explFirst; 247 if (m_alreadyKnown[idx]) 248 ret = m_isInEncoding[idx]; 253 m_alreadyKnown[idx] = true; 254 m_isInEncoding[idx] [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/ |
H A D | RECompiler.java | 48 int idx; // Current input index into ac field in class:RECompiler 289 if (idx >= len || pattern.charAt(idx++) != '{') 295 if (idx >= len || !Character.isDigit(pattern.charAt(idx))) 302 while (idx < len && Character.isDigit(pattern.charAt(idx))) 304 number.append(pattern.charAt(idx++)); 316 if (idx >= len) 322 if (pattern.charAt(idx) [all...] |
H A D | RE.java | 809 int idx = idxStart; 829 if ((idxNew = matchNodes(next, maxNode, idx)) != -1) 834 while ((once++ == 0) && (idx = matchNodes(node + nodeSize, next, idx)) != -1); 839 while ((idx = matchNodes(node + nodeSize, next, idx)) != -1) 842 if ((idxNew = matchNodes(next, maxNode, idx)) != -1) 853 if ((idxNew = matchNodes(next, maxNode, idx)) != -1) 858 while ((idx = matchNodes(node + nodeSize, next, idx)) ! [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/writer/ |
H A D | PrologCodeWriter.java | 75 int idx; 76 while( (idx=s.indexOf('\n'))!=-1 ) { 77 out.println("// "+ s.substring(0,idx) ); 78 s = s.substring(idx+1);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/ |
H A D | GeneratorUtil.java | 57 int idx = className.lastIndexOf(DOTC); 58 if (idx > -1) { 59 String tmp = className.substring(0, idx) + SIG_INNERCLASS; 60 tmp += className.substring(idx + 1);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
H A D | JCommentPart.java | 100 int idx; 102 while( (idx=s.indexOf('\n'))!=-1 ) { 103 String line = s.substring(0,idx); 106 s = s.substring(idx+1); 131 int idx = s.indexOf("*/"); 132 if(idx <0) return s; 134 s = s.substring(0,idx+1)+"<!---->"+s.substring(idx+1);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/ |
H A D | Util.java | 66 int idx = uriPath.lastIndexOf('/'); 69 uriPath = uriPath.substring(0,idx); // trim trailing slash 70 idx = uriPath.lastIndexOf('/'); // move idx to parent context 73 return uriPath.substring(0, idx)+"/"; 93 // so no need to make sure that ( idx == -1 ) 94 int idx = uriPath.lastIndexOf('/'); 95 return uriPath.substring(0, idx+1);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/ |
H A D | ValueSetter.java | 90 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...] |