Searched refs:idx (Results 26 - 50 of 280) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJCodeModel.java180 int idx = fullyqualifiedName.lastIndexOf('.');
181 if( idx<0 ) return rootPackage()._class(fullyqualifiedName);
183 return _package(fullyqualifiedName.substring(0,idx))
184 ._class(mods, fullyqualifiedName.substring(idx+1), t );
205 int idx = fullyQualifiedName.lastIndexOf('.');
206 if( idx<0 ) return rootPackage()._getClass(fullyQualifiedName);
208 return _package(fullyQualifiedName.substring(0,idx))
209 ._getClass( fullyQualifiedName.substring(idx+1) );
414 private int idx; field in class:JCodeModel.TypeNameParser
427 int start = idx;
[all...]
H A DJJavaName.java66 int idx = s.indexOf('.');
67 if(idx==-1) idx=s.length();
68 if( !isJavaIdentifier(s.substring(0,idx)) )
71 s = s.substring(idx);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DTagName.java100 // int idx = qname.indexOf(':');
101 // if(idx<0) return "";
102 // else return qname.substring(0,idx);
123 int idx = qname.indexOf(':');
124 if(idx<0) return "";
125 else return qname.substring(0,idx);
H A DAttributesEx.java43 CharSequence getData(int idx); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DBASE64EncodingAlgorithm.java159 int idx = 0;
167 value[idx++] = (byte) ((x1 << 2) | (x2 >> 4));
168 if (idx < valueLength) {
169 value[idx++] = (byte) (((x2 & 0x0f) << 4) | (x3 >> 2));
171 if (idx < valueLength) {
172 value[idx++] = (byte) (((x3 & 0x03) << 6) | x4);
218 int idx = offset;
221 int b1 = value[idx++] & 0xFF;
222 int b2 = (idx < lastIdx) ? value[idx
[all...]
/openjdk7/jdk/test/java/nio/Buffer/
H A DLimitDirectMemory.java84 int idx = 0, len = size.length();
88 if (Character.isDigit(size.charAt(i))) idx++;
92 if (idx == 0)
95 result = Integer.parseInt(size.substring(0, idx));
97 if (idx < len) {
98 for (int i = idx; i < len; i++) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.cpp208 uint idx; local
226 for (idx = 0; idx < ARRAY_SIZE(offsets); idx++) {
227 nc->set_destination( cb.insts_begin() + offsets[idx] );
228 assert(nc->destination() == (cb.insts_begin() + offsets[idx]), "check unit test");
377 uint idx; local
401 for (idx = 0; idx < ARRAY_SIZE(offsets); idx
487 uint idx; local
581 uint idx = 0; local
726 uint idx = 0; local
856 uint idx; local
[all...]
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx_impl.c100 int idx[3] = { 0, 1, 2 }; local
103 if (numColors[idx[i]]*scale[idx[i]]>numColors[idx[j]]*scale[idx[j]]) \
104 { int t = idx[i]; idx[i] = idx[j]; idx[j] = t; }
109 if ((numColors[idx[
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DCPPExpressions.java95 int idx = expr.lastIndexOf(sep);
96 if (idx < 0) {
99 String containingType = expr.substring(0, idx);
100 String fieldName = expr.substring(idx + sep.length(), expr.length());
/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/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DLZWCompressor.java98 int idx;
103 for (idx = offset; idx < maxOffset; ++idx) {
104 c = buf[idx];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DUnionSimpleTypeImpl.java56 public XSSimpleType getMember( int idx ) { return memberTypes[idx].getType(); }
61 int idx=0;
63 return idx<memberTypes.length;
67 return memberTypes[idx++].getType();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDeferedCollection.java88 int idx=0;
90 if(idx<archive.size())
96 if(idx==archive.size())
98 if(idx==archive.size())
100 return archive.get(idx++);
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DPoller.c416 int idx;
424 for (idx = ioeh->last_index - 1; idx >= 0; idx--) {
425 if (ioeh->pfd[idx].fd == -1)
450 idx = ioeh->last_index;
456 ASSERT((idx >= 0) && (idx <= ioeh->max_index));
457 ASSERT(ioeh->pfd[idx].fd == -1);
458 ioeh->pfd[idx]
411 int idx; local
625 int useEvents, count, idx; local
[all...]
/openjdk7/jdk/test/java/util/Collections/
H A DFindSubList.java59 int idx = Collections.indexOfSubList(s, target[i]);
60 if (idx != index[i])
62 "is " + idx + ", should be "+index[i]);
84 int idx = Collections.lastIndexOfSubList(s, target[i]);
85 if (idx != index[i])
87 "is " + idx + ", should be "+index[i]);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DMotifDnDConstants.java328 for (int idx = 0; idx < 4; idx++) {
329 target |= (unsafe.getByte(bufptr + idx) << 8*idx)
330 & (0xFF << 8*idx);
333 for (int idx = 0; idx < 4; idx++) {
334 target |= (unsafe.getByte(bufptr + idx) <<
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameConverter.java126 int idx = nsUri.indexOf(':');
128 if(idx>=0) {
129 scheme = nsUri.substring(0,idx);
131 nsUri = nsUri.substring(idx+1);
135 idx = nsUri.indexOf("#");
136 if(idx >= 0)
137 nsUri = nsUri.substring(0, idx);
151 idx = lastToken.lastIndexOf( '.' );
152 if( idx > 0 ) {
153 lastToken = lastToken.substring( 0, idx );
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.h84 ptrlist outputEntries; // list of entry* needing output idx assigned
260 uint idx; // index (0..31...) which identifies this layout member in struct:unpacker::layout_definition
301 layout_definition* defineLayout(int idx, const char* name, const char* layout);
302 layout_definition* defineLayout(int idx, entry* nameEntry, const char* layout);
312 // Read data into the bands of the idx-th layout.
313 void readBandData(int idx); // parse layout, make bands, read data
316 layout_definition* getLayout(uint idx) { argument
317 if (idx >= (uint)layouts.length()) return null;
318 return (layout_definition*) layouts.get(idx);
331 // Return flag_count if idx i
334 isRedefined(uint idx) argument
338 isPredefined(uint idx) argument
345 isIndex(uint idx) argument
352 getCount(uint idx) argument
[all...]
/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/jdk/src/share/classes/sun/java2d/pisces/
H A DDasher.java52 private int idx; field in class:Dasher
77 int idx = 0;
80 while (phase >= (d = dash[idx])) {
82 idx = (idx + 1) % dash.length;
89 this.startIdx = idx;
103 this.idx = startIdx;
184 float leftInThisDashSegment = dash[idx] - phase;
193 idx = (idx
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmachnode.cpp37 int MachOper::reg(PhaseRegAlloc *ra_, const Node *node, int idx) const {
38 return (int)(ra_->get_encode(node->in(idx)));
49 int MachOper::base (PhaseRegAlloc *ra_, const Node *node, int idx) const { return 0x00; }
50 int MachOper::index(PhaseRegAlloc *ra_, const Node *node, int idx) const { return 0x00; }
52 int MachOper::disp (PhaseRegAlloc *ra_, const Node *node, int idx) const { return 0x00; }
188 const RegMask &MachNode::in_RegMask( uint idx ) const {
191 if( idx < skipped ) {
193 assert( idx == 1, "expected base ptr here" );
199 while( idx >= skipped+num_edges ) {
208 rm = _opnds[opcnt]->in_RegMask(idx
[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/jdk/src/share/classes/com/sun/rowset/internal/
H A DXmlReaderContentHandler.java94 private int idx; field in class:XmlReaderContentHandler
449 idx = 0;
526 * <code>XmlReaderContentHandler</code> object's <code>idx</code>
590 idx = 0;
731 idx++;
826 idx = ((Integer)upd[0]).intValue();
1177 idx = 0;
1188 idx++;
1194 md.setAutoIncrement(idx, getBooleanValue(s));
1200 md.setCaseSensitive(idx, getBooleanValu
[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;

Completed in 88 milliseconds

1234567891011>>