Searched refs:idx (Results 226 - 250 of 280) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DBasisLibrary.java419 int idx = value.lastIndexOf(':');
420 if (idx >= 0) value = value.substring(idx + 1);
421 idx = value.lastIndexOf('@');
422 if (idx >= 0) value = value.substring(idx + 1);
/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java416 // integer significand array & idx is the index to it. The array
419 int idx = 0;
444 coeff[idx] = c;
446 } else if (idx != 0) {
447 coeff[idx++] = c;
451 if (prec != 1 || idx != 0)
453 coeff[idx++] = c;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DSchemaParser.java543 int idx = childPatterns.size()-1;
544 childPatterns.set(idx, schemaBuilder.annotateAfter(childPatterns.get(idx), ea));
554 int idx = childPatterns.size()-1;
555 childPatterns.set(idx,schemaBuilder.commentAfter(childPatterns.get(idx), comments));
/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.cpp84 st->print(", idx=?\?;");
86 st->print(", idx=Bot;");
88 st->print(", idx=Top;");
90 st->print(", idx=Raw;");
97 st->print(", idx=%d;", atp->index());
206 assert(consistent, "adr_check must match alias idx");
1782 uint LoadNode::match_edge(uint idx) const {
1783 return idx == MemNode::Address;
2416 uint StoreNode::match_edge(uint idx) const {
2417 return idx
[all...]
H A Dloopnode.cpp1921 log->print(" idx='%d' ", head->_idx);
2645 uint idx = d->_idx; local
2646 if (idx >= _idom_size) {
2648 while( idx >= newsize ) {
2656 _idom[idx] = n;
2657 _dom_depth[idx] = dom_depth;
3658 void PhaseIdealLoop::dump( IdealLoopTree *loop, uint idx, Node_List &rpo_list ) const { argument
3662 for( uint j=idx; j > 0; j-- ) {
3724 uint idx = stk.index(); local
3725 if (idx <
[all...]
H A Dchaitin.cpp566 uint idx = n->is_Copy(); local
574 if( idx ) {
576 uint clidx = n2lidx(n->in(idx));
1679 uint idx = n->is_Copy(); local
1680 if( idx ) liveout.remove( n2lidx(n->in(idx)) );
H A Dmacro.cpp1870 for (int idx = 0; idx < num_mon; idx++) {
1871 Node* obj_node = sfn->monitor_obj(jvms, idx);
1872 Node* box_node = sfn->monitor_box(jvms, idx);
1874 int j = jvms->monitor_box_offset(idx);
H A Dsuperword.cpp48 _bb_idx(arena(), (int)(1.10 * phase->C->unique()), 0, 0), // node idx to index in bb
1071 // For pack p, are all idx operands the same?
1072 static bool same_inputs(Node_List* p, int idx) { argument
1075 Node* p0_def = p0->in(idx);
1078 Node* pi_def = pi->in(idx);
1536 int idx = _n_idx_list.index(); local
1538 Node* def = use->in(idx);
1547 _igvn.replace_input_of(use, idx, ex);
H A DphaseX.hpp100 Node *find_index(uint idx); // For debugging
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DStAXSchemaParser.java323 int idx = fAttributes.getLength();
326 fAttributes.setSpecified(idx, attr.isSpecified());
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DScheduledThreadPoolExecutor.java866 private void setIndex(RunnableScheduledFuture f, int idx) { argument
868 ((ScheduledFutureTask)f).heapIndex = idx;
H A DConcurrentHashMap.java508 int idx = e.hash & sizeMask;
510 newTable[idx] = e;
513 int lastIdx = idx;
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DDriver.java140 int idx = 1;
144 prop1 = prop+"cli."+(idx++);
H A DConstantPool.java1017 int idx = ix.findIndexOf(e);
1018 if (idx >= 0)
1019 idx += untypedFirstIndexByTag[tag];
1020 return idx;
H A DBandStructure.java2350 int idx = (self_bc - _self_linker_op);
2351 boolean isSuper = (idx >= _self_linker_super_flag);
2352 if (isSuper) idx -= _self_linker_super_flag;
2353 boolean isAload = (idx >= _self_linker_aload_flag);
2354 if (isAload) idx -= _self_linker_aload_flag;
2355 int origBC = _first_linker_op + idx;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DSchemaSetImpl.java97 public XSSchema getSchema(int idx) { argument
98 return schemas2.get(idx);
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java2482 for(int idx = 0; idx < arr.length; idx++) {
2483 arr[idx] = ci.current();
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java1124 int idx = 0;
1127 (short)((curr[idx] << 8) | (curr[idx + 1] & 0xff));
1128 idx += 2;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp2029 LIRItem idx(this);
2033 idx.set_instruction(x->index());
2034 idx.load_nonconstant();
2045 assert(!x->has_index() || idx.value() == x->index(), "should match");
2058 LIR_Opr index_op = idx.result();
2117 LIRItem idx(this);
2121 idx.set_instruction(x->index());
2122 idx.load_item();
2143 LIR_Opr index_op = idx.result();
2148 if(idx
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp284 size_t idx = i + j - 15; local
285 if (idx < len) {
286 char c = ((char*)data)[idx];
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DAssembler.java691 int idx = clsName.indexOf(' ');
693 if (idx != -1) {
694 clsName = clsName.substring(0, idx);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DDrawImage.java289 int idx = (int) Math.floor(dx + 0.5);
292 (closeToInteger(idx, dx) && closeToInteger(idy, dy)))
295 idx, idy,
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp3172 Register idx = noreg; // contains either constant offset or index local
3177 idx = O7;
3178 __ set(disp, idx);
3182 idx = mem_addr->index()->as_register();
3197 if (idx == noreg) {
3200 __ stx(G4, base, idx);
3206 if (idx == noreg) {
3209 __ std(G4, base, idx);
3215 if (idx == noreg) {
3218 __ ldx(base, idx, G
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLGenerator.java261 int idx = schemaPrefix.lastIndexOf('.');
262 if (idx > 0)
263 schemaPrefix = schemaPrefix.substring(0, idx);
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp2259 int tbl_no, idx; local
2272 for (idx = 0; idx < localvariable_table_length[tbl_no]; idx++, lvt++) {
2273 copy_lvt_element(&cf_lvt[idx], lvt);
2293 for (idx = 0; idx < localvariable_type_table_length[tbl_no]; idx++) {
2294 copy_lvt_element(&cf_lvtt[idx], &lvtt_elem);

Completed in 221 milliseconds

1234567891011>>