Searched refs:at (Results 301 - 325 of 391) sorted by relevance

<<111213141516

/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.hpp49 // client may call initialize, at most once
151 etype at(const int i) const { return (*this)[i]; } \
234 /* inserts the given element before the element at index i */ \
246 /* inserts contents of the given stack before the element at index i */ \
H A DgrowableArray.hpp56 /* oop bad_oop = arr->at(0)(); // Handle is BAD HERE. */
93 int _nesting; // resource area nesting at creation
220 E at(int i) const { function in class:GrowableArray
292 // start at the end of the array
326 // inserts the given element before the element at index i
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTransTypes.java47 * If you write code that depends on this, you do so at your own risk.
107 make.at(tree.pos);
214 make.at(pos);
693 result = make.at(tree.pos).Type(et);
872 make.at(tree.pos);
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java353 if (space >= 0 && rpar >= 0) // string has both space and ), stop at first
355 else // string has only one, stop at it
401 throw new Exception("Expected ' at start of string");
417 throw new Exception("No closing ' at end of string");
/openjdk7/jdk/src/share/classes/sun/font/
H A DExtendedTextSourceLabel.java84 * Create from a TextSource, optionally using cached data from oldLabel starting at the offset.
202 * position at which a following glyphvector's origin should be placed.
208 * as being at the origin+advance of the base glyph, with zero advance.
238 * in the font that place the glyph for a character at other than the pos + advance
246 float at = -cm.ascent;
251 return new Rectangle2D.Float(al, at, aw, ah);
290 return new Rectangle2D.Float(al, at, aw, ah);
426 // no italics so no problem at margins.
582 * a) if the line is ltr, we start writing at position 0 until we finish, there may be leftver space
583 * b) if the line is rtl and 1-1, we start writing at positio
[all...]
H A DAttributeValues.java667 Annotation at = (Annotation)o;
668 imHighlight = (InputMethodHighlight)at.getValue();
/openjdk7/hotspot/src/share/vm/opto/
H A DdoCall.cpp384 method()->print_name(); tty->print_cr(" can not compile call at bci %d to:", bci());
530 // The Java code knows this, at VerifyType.isNullConversion.
571 method()->print_name(); tty->print_cr(" asserting nullness of result at bci: %d", bci());
579 // If there is going to be a trap, put it at the next bytecode:
641 int handler_bci = bcis->at(i);
648 const TypeInstPtr* extype = extypes->at(i)->is_instptr();
649 Node *ex_oop = _gvn.transform(new (C) CreateExNode(extypes->at(i), ctrl, i_o));
663 tty->print(" at bci:%d in ", bci());
699 // Case 3: We have some handlers with subklasses or are not loaded at
723 // Get the exception oop as known at compil
[all...]
H A Dnode.cpp102 // Ensure that at least one copy of the last-seen edge was deleted.
649 // Previously I was using only powers-of-2 which peaked at 128 edges.
672 // Previously I was using only powers-of-2 which peaked at 128 edges.
705 // Add a new required input at the end
717 if( in(i) == NULL ) // Find the NULL at end of prec edge list
726 // Add a new required input at the end
744 if( _in[i] == NULL ) // Find the NULL at end of prec edge list
777 // Insert a new required input at the end
888 // duplicates removed and NULLs packed down at the end.
892 // Check for NULL at en
[all...]
H A Dparse1.cpp85 tty->print_cr("%d implicit null exceptions at runtime",
161 // When paths are cut off, values at later merge points can rise
216 assert(jvms()->monitor_depth() == 0, "should be no active locks at beginning of osr");
262 if (!live_locals.at(index)) {
276 if (!live_oops.at(index)) {
312 // at a bci with a non-empty stack. We should not reach here.
324 // at execution time what the compiler is expecting now:
328 assert(osr_block->flow()->jsrs()->size() == 0, "should be no jsrs live at osr point");
335 if (!live_oops.at(index)) {
346 // locals at th
[all...]
H A Dlive.cpp302 check = worklist.at(k);
H A DphaseX.hpp88 // Return Node* at index in table
89 Node *at(uint table_index) { function in class:NodeHash
301 // given cycle. We do it at Phis, and nowhere else.
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_32.s71 ## SafeFetchTriage() would return the resume-at EIP, otherwise null.
113 # align source address at dword address boundary
307 # align source address at dword address boundary
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_32.s50 ## SafeFetchTriage() would return the resume-at EIP, otherwise null.
92 # align source address at dword address boundary
286 # align source address at dword address boundary
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassDefinition.java41 * supported API. Code that depends on them does so at its own risk:
78 // Set at the beginning of checking, upon entry to 'SourceClass.checkInternal'.
209 * It is only possible to resolve names at this point if we are
210 * a source class. The provision of this method at this level
239 * Set the class' enclosing class. Must be done at most once.
248 * Must be done at most once.
1466 // This should not happen at this stage.
1616 // That way the VM didn't have to bother looking at the interfaces.
1665 * at some point a class is not found, the partially-resolved
1669 * resolveName() looks at surroundin
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp894 // token ends at newline, or at unquoted whitespace
976 // Create new property and add at the end of the list
1119 // AlwaysTenure flag should make ParNew promote all at first collection.
1186 if (!FLAG_IS_DEFAULT(NewSize)) { // NewSize explicitly set at command-line
1210 // at least min_new, and at most preferred_max_new_size.
1534 // Not-small physical memory, so require a heap at least
1689 // Returns true if given value is at least specified min threshold
1695 "%s of " INTX_FORMAT " is invalid; must be at leas
[all...]
H A DsharedRuntime.hpp347 // 4-bytes higher. So for sparc because the register window save area is at
493 static void trace_ic_miss(address at);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_64.cpp198 // will allow deoptimization at this safepoint to find all possible
370 // at all. Since we control the java ABI we ought to at least get some
503 // at all. We've come from compiled code and are attempting to jump to the
726 // Ensure compiled code always sees stack at proper alignment
786 // are accessed as negative so LSW is at LOW address
1521 // break the cycle of links and insert new_store at the end
1584 arg_order.push(stores->at(i)->src_index());
1585 arg_order.push(stores->at(i)->dst_index());
1601 MoveOperation* s = edges.at(
1836 const char* at = atype->as_C_string(); local
[all...]
H A Dc1_LIRGenerator_x86.cpp481 left.load_item_force(cc->at(1));
484 __ move(right.result(), cc->at(0));
1015 tty->print_cr(" ###class not loaded at new bci %d", x->printable_bci());
1096 LIRItem* size = new LIRItem(dims->at(i), this);
1115 LIRItem* size = items->at(i);
1227 // longs cannot handle constants at right side
/openjdk7/hotspot/src/share/vm/memory/
H A Ddump.cpp927 klassOop obj = (klassOop)_klass_objects->at(i);
988 // shared classes at runtime, where constraints were previously created.
1026 // out the objects in the order they are accessed at startup time.
1054 // analysis because the code is fairly mature at this point
1098 tty->print("Moving common symbols to metadata section at " PTR_FORMAT " ... ",
1105 tty->print("Moving vmSymbols to metadata section at " PTR_FORMAT " ... ",
1113 tty->print("Moving the remaining symbols to metadata section at " PTR_FORMAT " ... ",
1118 // Record the total length of all symbols at the beginning of the block.
1130 tty->print("Moving pre-ordered read-only objects to shared space at " PTR_FORMAT " ... ",
1133 oop obj = _class_promote_order->at(
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java183 String at(int i) { method in class:CommandProcessor.Tokens
1219 out.println("found at " + addr);
1225 out.println("found at " + addr);
1270 out.println("Exception printing blob at " + base);
1274 out.println("found at " + base + "\n");
1585 result.append(item.at(item.countTokens() - 1));
1648 String r = t.at(len - 2);
1651 String file = t.at(len - 1);
/openjdk7/hotspot/src/share/vm/ci/
H A DciInstanceKlass.cpp50 assert(get_instanceKlass()->is_loaded(), "must be at least loaded");
322 if (!has_subklass()) return NULL; // Must have at least one subklass.
346 ciField* field = _nonstatic_fields->at(i);
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.hpp318 return _cp_patches->at(index);
/openjdk7/jdk/test/com/sun/jdi/
H A DShellScaffold.sh46 # compileOptions=<string> compile options for at least the first compile,
90 # sets bkpts at all lines that contain this string.
226 # we can kill them at the end of the run.
564 # The above echo works because the cmd (stop at ...)
617 # a. if we are currently at
621 # and a 'trace methods comes in, we will wait until at least
627 # b. if we are currently at
682 cmd stop at $pkgDot$classname:$ii
824 lastLine=`$grep 'Listening at address' $jdbOutFile`
838 # this gets the pid of tee, at leas
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dsolaris_x86_32.s124 / align source address at dword address boundary
316 / align source address at dword address boundary
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_InstructionPrinter.cpp238 // one at the same indentation level.
514 print_value(dims->at(i));
621 output()->print(" B%d", x->successors()->at(i)->block_id());

Completed in 155 milliseconds

<<111213141516