Searched refs:at (Results 101 - 125 of 391) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.cpp58 // which ensures that for each oop, at most one ciObject is created.
127 _next_ident = 1; // start numbering CI objects at 1
185 ciObject* obj = _ci_objects->at(i2);
239 ciSymbol* s = _symbols->at(i);
259 oop o = _ci_objects->at(j)->get_oop();
270 if (_ci_objects->at(i)->get_oop() == key) {
303 return _ci_objects->at(index);
387 ciMethod* entry = _unloaded_methods->at(i);
435 ciKlass* entry = _unloaded_klasses->at(i);
504 ciInstance* entry = _unloaded_instances->at(
[all...]
H A DciSignature.cpp106 return _types->at(_count);
117 return _types->at(index);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.cpp125 assert(!v1->type()->is_double_word() || list.at(i + 1) == NULL, "hi-word of doubleword value must be NULL");
183 assert(!t->is_double_word() || _stack.at(index + 1) == NULL, "hi-word of doubleword value must be NULL");
260 assert(bci() == SynchronizationEntryBCI || Bytecodes::is_defined(scope()->method()->java_code_at_bci(bci())), "make sure bci points at a real bytecode");
261 assert(scope()->method()->liveness_at_bci(bci()).is_valid(), "liveness at bci must be valid");
266 Value v = _stack.at(i);
268 assert(_stack.at(i - 1)->type()->is_double_word(), "only hi-words are NULL on stack");
270 assert(_stack.at(i + 1) == NULL, "hi-word must be NULL");
275 Value v = _locals.at(i);
277 assert(_locals.at(i + 1) == NULL, "hi-word must be NULL");
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp49 assert(((ObjectValue*) _obj_pool->at(i))->id() != id, "should not be read twice");
63 ObjectValue* ov = (ObjectValue*) _obj_pool->at(i);
132 _field_values.at(i)->write_on(stream);
144 _field_values.at(0)->print_on(st);
148 _field_values.at(i)->print_on(st);
H A DscopeDesc.cpp197 l->at(index)->print_on(st);
208 l->at(index)->print_on(st);
219 l->at(index)->print_on(st);
229 ObjectValue* sv = (ObjectValue*) _objects->at(i);
248 //guarantee(!l->at(index)->is_illegal(), "expression element cannot be illegal");
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTableFormat.hpp52 static verification_type_info* at(address addr) { function in class:verification_type_info
181 static stack_map_frame* at(address addr) { function in class:stack_map_frame
186 return at((address)this + size());
231 static same_frame* at(address addr) { function in class:same_frame
278 static same_frame_extended* at(address addr) { function in class:same_frame_extended
328 static same_locals_1_stack_item_frame* at(address addr) { function in class:same_locals_1_stack_item_frame
367 return verification_type_info::at(type_addr());
398 static same_locals_1_stack_item_extended* at(address addr) { function in class:same_locals_1_stack_item_extended
435 return verification_type_info::at(type_addr());
469 static chop_frame* at(addres function in class:chop_frame
536 static append_frame* at(address addr) { function in class:append_frame
641 static full_frame* at(address addr) { function in class:full_frame
875 static stack_map_table* at(address addr) { function in class:stack_map_table
907 static stack_map_table_attribute* at(address addr) { function in class:stack_map_table_attribute
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeHistogram.cpp97 while (i-- > 0) sum += profile->at(i)->count();
131 HistoEntry* e = profile->at(i);
173 HistoEntry* e = profile->at(i);
/openjdk7/hotspot/src/share/vm/prims/wbtestmethods/
H A DparserTests.cpp137 oop parsedName = java_lang_String::create_oop_from_str(parsedArgNames->at(i), CHECK_NULL);
139 GenDCmdArgument* arg = parser.lookup_dcmd_option(parsedArgNames->at(i), strlen(parsedArgNames->at(i)));
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe.cpp116 "must be at safepoint or it's a java frame of the current thread");
129 MonitorInfo* monitor = mons->at(index);
167 StackValue* sv = locs->at(0);
169 Handle o = locs->at(0)->get_obj();
186 MonitorInfo* monitor = mons->at(index);
314 StackValue *sv = values->at(i);
383 // skip top frame, as it may not be at safepoint
527 MonitorInfo* monitor = list->at(index);
590 if ( is_compiled_frame() && locs->at(i)->type() == T_CONFLICT) continue;
591 if (other->is_compiled_frame() && other_locs->at(
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArea.java624 * @param at an optional <code>AffineTransform</code> to be applied to
629 * segment at a time.
632 public PathIterator getPathIterator(AffineTransform at) { argument
633 return new AreaIterator(curves, at);
642 * @param at an optional <code>AffineTransform</code> to be
651 * at a time.
654 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
655 return new FlatteningPathIterator(getPathIterator(at), flatness);
666 public AreaIterator(Vector curves, AffineTransform at) { argument
668 this.transform = at;
[all...]
H A DEllipseIterator.java41 EllipseIterator(Ellipse2D e, AffineTransform at) { argument
46 this.affine = at;
85 * centered at 0.5, 0.5
H A DRoundRectIterator.java41 RoundRectIterator(RoundRectangle2D rr, AffineTransform at) { argument
48 this.affine = at;
/openjdk7/jdk/src/share/classes/java/awt/
H A DPolygon.java171 * data at the beginning.
538 * @param at an optional <code>AffineTransform</code> to be applied to the
545 public PathIterator getPathIterator(AffineTransform at) { argument
546 return new PolygonPathIterator(this, at);
558 * @param at an optional <code>AffineTransform</code> to be applied to the
570 public PathIterator getPathIterator(AffineTransform at, double flatness) { argument
571 return getPathIterator(at);
579 public PolygonPathIterator(Polygon pg, AffineTransform at) { argument
581 transform = at;
/openjdk7/langtools/test/tools/javadoc/lib/
H A DTester.java145 public void printAnnotationType(AnnotationTypeDoc at) throws IOException { argument
146 prAnnotationType(0, at);
214 private void prAnnotationType(int off, AnnotationTypeDoc at) argument
216 prln(off, "@interface " + at);
217 prAnnotations(off + 2, at.annotations());
219 for (AnnotationTypeElementDoc e : at.elements()) {
310 // Print "o" at given offset.
319 // Print "o" (if non-null) at given offset, then newline.
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DIDLGenerator.java133 ArrayType at = (ArrayType)t;
134 Type et = at.getElementType();
139 return Identifier.lookup( getQualifiedName( at ) );
259 ArrayType at = (ArrayType)t;
260 int dim = at.getArrayDimension();
261 Type et = at.getElementType();
265 outVec.addElement( new OutputType( fileName,at ) );
319 ArrayType at = (ArrayType)e.nextElement();
320 int dim = at.getArrayDimension();
321 Type et = at
1172 writeForwardReference( ArrayType at, int dim, IndentingWriter p) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DPangoFonts.java53 * That is something that must be solved at the X11 level
67 AffineTransform at = gc.getNormalizingTransform();
68 fontScale = at.getScaleY();
123 * to use only at start-up from that X resource.
/openjdk7/jdk/test/java/awt/image/mlib/
H A DMlibOpsTest.java84 AffineTransform at = new AffineTransform();
85 return new AffineTransformOp(at,
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DAnnoTypeElemDecl.java54 for (TypeDeclaration at : thisClassDecl.getNestedTypes()) {
55 for (MethodDeclaration meth : at.getMethods()) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAtom.java140 static void register(XAtom at) { argument
141 if (at == null) {
145 if (at.atom != 0) {
146 atomToAtom.put(Long.valueOf(at.atom), at);
148 if (at.name != null) {
149 nameToAtom.put(at.name, at);
195 XAtom at = lookup(atom);
196 if (at
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLine.java286 // do we want italic padding at the right of the line?
320 AffineTransform at = tlc.getBaselineTransform();
321 if (at != null && ((at.getType() & at.TYPE_TRANSLATION) != 0)) {
322 double dx = at.getTranslateX();
323 double dy = at.getTranslateY();
328 if (at != null) {
329 at.deltaTransform(pt, pt);
337 AffineTransform at
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DCachedNodeListIterator.java10 * You may obtain a copy of the License at
81 return _nodes.at(index);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DPhaseCFG.java66 blocks.at(i).dump(out);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DGrowableArray.java56 public T at(int i) { method in class:GrowableArray
H A DMarkBits.java70 if (bits.at(intIdx)) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.hpp35 // the heap (i.e., 0 is the region at the bottom of the heap, 1 is
111 // Return the HeapRegion at the given index. Assume that the index
113 inline HeapRegion* at(uint index) const;
138 // Return the number of contiguous regions at the end of the sequence

Completed in 101 milliseconds

1234567891011>>