Searched refs:at (Results 26 - 50 of 391) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeCheckCast.java49 public static BytecodeCheckCast at(Method method, int bci) { method in class:BytecodeCheckCast
57 /** Like at, but returns null if the BCI is not at checkcast */
63 public static BytecodeCheckCast at(BytecodeStream bcs) { method in class:BytecodeCheckCast
H A DBytecodeGetField.java49 public static BytecodeGetField at(Method method, int bci) { method in class:BytecodeGetField
57 /** Like at, but returns null if the BCI is not at getfield */
63 public static BytecodeGetField at(BytecodeStream bcs) { method in class:BytecodeGetField
H A DBytecodeGetStatic.java49 public static BytecodeGetStatic at(Method method, int bci) { method in class:BytecodeGetStatic
57 /** Like at, but returns null if the BCI is not at getstatic */
63 public static BytecodeGetStatic at(BytecodeStream bcs) { method in class:BytecodeGetStatic
H A DBytecodeGoto.java49 public static BytecodeGoto at(Method method, int bci) { method in class:BytecodeGoto
57 /** Like at, but returns null if the BCI is not at goto */
63 public static BytecodeGoto at(BytecodeStream bcs) { method in class:BytecodeGoto
H A DBytecodeGotoW.java49 public static BytecodeGotoW at(Method method, int bci) { method in class:BytecodeGotoW
57 /** Like at, but returns null if the BCI is not at goto_w */
63 public static BytecodeGotoW at(BytecodeStream bcs) { method in class:BytecodeGotoW
H A DBytecodeInstanceOf.java49 public static BytecodeInstanceOf at(Method method, int bci) { method in class:BytecodeInstanceOf
57 /** Like at, but returns null if the BCI is not at instanceof */
63 public static BytecodeInstanceOf at(BytecodeStream bcs) { method in class:BytecodeInstanceOf
H A DBytecodeJsr.java49 public static BytecodeJsr at(Method method, int bci) { method in class:BytecodeJsr
57 /** Like at, but returns null if the BCI is not at jsr */
63 public static BytecodeJsr at(BytecodeStream bcs) { method in class:BytecodeJsr
H A DBytecodeJsrW.java49 public static BytecodeJsrW at(Method method, int bci) { method in class:BytecodeJsrW
57 /** Like at, but returns null if the BCI is not at jsr_w */
63 public static BytecodeJsrW at(BytecodeStream bcs) { method in class:BytecodeJsrW
H A DBytecodeLoad.java55 public static BytecodeLoad at(Method method, int bci) { method in class:BytecodeLoad
63 /** Like at, but returns null if the BCI is not at load */
69 public static BytecodeLoad at(BytecodeStream bcs) { method in class:BytecodeLoad
H A DBytecodeNew.java49 public static BytecodeNew at(Method method, int bci) { method in class:BytecodeNew
57 /** Like at, but returns null if the BCI is not at new */
63 public static BytecodeNew at(BytecodeStream bcs) { method in class:BytecodeNew
H A DBytecodePutField.java49 public static BytecodePutField at(Method method, int bci) { method in class:BytecodePutField
57 /** Like at, but returns null if the BCI is not at putfield */
63 public static BytecodePutField at(BytecodeStream bcs) { method in class:BytecodePutField
H A DBytecodePutStatic.java49 public static BytecodePutStatic at(Method method, int bci) { method in class:BytecodePutStatic
57 /** Like at, but returns null if the BCI is not at putstatic */
63 public static BytecodePutStatic at(BytecodeStream bcs) { method in class:BytecodePutStatic
H A DBytecodeStore.java55 public static BytecodeStore at(Method method, int bci) { method in class:BytecodeStore
63 /** Like at, but returns null if the BCI is not at store */
69 public static BytecodeStore at(BytecodeStream bcs) { method in class:BytecodeStore
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp43 StackValue* at(int i) const { return _values->at(i); } function in class:StackValueCollection
H A Dvframe_hp.cpp66 if (list->at(i)->matches((vframe*)this)) {
67 deferred = list->at(i)->locals();
74 result->add( create_stack_value(scv_list->at(i)) );
80 jvmtiDeferredLocalVariable* val = deferred->at(l);
138 if (deferred->at(f)->matches(this)) {
140 GrowableArray<jvmtiDeferredLocalVariable*>* locals = deferred->at(f)->locals();
143 if (locals->at(l)->index() == index) {
144 locals->at(l)->set_value(value);
176 result->add( create_stack_value(scv_list->at(i)) );
221 MonitorValue* mv = monitors->at(inde
[all...]
H A DreflectionUtils.hpp161 if (klass == _filtered_fields->at(i)->klass() &&
162 field_offset == _filtered_fields->at(i)->field_offset()) {
171 if (local_only && klass == _filtered_fields->at(i)->klass()) {
173 } else if (klass->klass_part()->is_subtype_of(_filtered_fields->at(i)->klass())) {
182 f->do_oop((oop*)_filtered_fields->at(i)->klass_addr());
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeCopier.java38 * If you write code that depends on this, you do so at your own risk.
78 return M.at(t.pos).Annotation(annotationType, args);
85 return M.at(t.pos).Assert(cond, detail);
92 return M.at(t.pos).Assign(lhs, rhs);
99 return M.at(t.pos).Assignop(t.getTag(), lhs, rhs);
106 return M.at(t.pos).Binary(t.getTag(), lhs, rhs);
112 return M.at(t.pos).Block(t.flags, stats);
117 return M.at(t.pos).Break(t.label);
124 return M.at(t.pos).Case(pat, stats);
131 return M.at(
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTransformAttribute.java81 AffineTransform at = transform;
82 return (at == null) ? new AffineTransform() : new AffineTransform(at);
/openjdk7/jdk/src/share/classes/sun/font/
H A DFont2D.java47 * them the same rank is the easy solution for now at least.
271 AffineTransform at = frc.getTransform();
273 at.scale(ptSize, ptSize);
275 at.concatenate(font.getTransform());
276 if (at.getTranslateX() != 0 || at.getTranslateY() != 0) {
277 at.setTransform(at.getScaleX(),
278 at.getShearY(),
279 at
391 getFontMetrics(Font font, AffineTransform at, Object aaHint, Object fmHint, float metrics[]) argument
515 getItalicAngle(Font font, AffineTransform at, Object aaHint, Object fmHint) argument
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DGraphicsTests.java341 public static double scaleForPoint(AffineTransform at, argument
347 at.transform(ptd, ptd);
364 public static Dimension scaleForTransform(AffineTransform at, argument
370 at.transform(ptd, ptd);
376 double scalex = scaleForPoint(at, ox, oy, w, h, w, h);
378 scalex = Math.min(scaleForPoint(at, ox, oy, w, 0, w, h), scalex);
379 scaley = Math.min(scaleForPoint(at, ox, oy, 0, h, w, h), scaley);
421 AffineTransform at = new AffineTransform();
422 at.translate(1.5, 1.5);
423 g2d.transform(at);
[all...]
/openjdk7/jdk/test/java/awt/EventDispatchThread/LoopRobustness/
H A DLoopRobustness.java54 long at;
58 at = System.currentTimeMillis();
60 while (!notifyOccured && (System.currentTimeMillis() - at < TIMEOUT)) {
74 at = System.currentTimeMillis();
75 while(System.currentTimeMillis() - at < TIMEOUT && clicks < 2) {
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DTransformingPathConsumer2D.java34 AffineTransform at)
36 if (at == null) {
39 float Mxx = (float) at.getScaleX();
40 float Mxy = (float) at.getShearX();
41 float Mxt = (float) at.getTranslateX();
42 float Myx = (float) at.getShearY();
43 float Myy = (float) at.getScaleY();
44 float Myt = (float) at.getTranslateY();
68 AffineTransform at)
70 if (at
33 transformConsumer(PathConsumer2D out, AffineTransform at) argument
67 deltaTransformConsumer(PathConsumer2D out, AffineTransform at) argument
89 inverseDeltaTransformConsumer(PathConsumer2D out, AffineTransform at) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.cpp181 Node* n = _block.at(i);
213 MemNode* s = memops.at(i)->as_Mem();
251 MemNode* mr = align_to_refs.at(i)->as_Mem();
261 Node* s1 = memops.at(i);
265 Node* s2 = memops.at(j);
280 MemNode* s = memops.at(i)->as_Mem();
288 Node_List* p = _packset.at(i);
289 MemNode* s = p->at(0)->as_Mem();
301 Node_List* p = _packset.at(i);
302 MemNode* s = p->at(
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DIntVector.java10 * You may obtain a copy of the License at
197 * Inserts the specified node in this vector at the specified index.
203 * @param at Index of where to insert
205 public final void insertElementAt(int value, int at) argument
219 if (at <= (m_firstFree - 1))
221 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
224 m_map[at] = value;
230 * Inserts the specified node in this vector at th
[all...]
H A DObjectVector.java10 * You may obtain a copy of the License at
197 * Inserts the specified object in this vector at the specified index.
203 * @param at Index of where to insert
205 public final void insertElementAt(Object value, int at) argument
219 if (at <= (m_firstFree - 1))
221 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
224 m_map[at] = value;
276 * Deletes the component at th
[all...]

Completed in 101 milliseconds

1234567891011>>