Searched refs:at (Results 51 - 75 of 391) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DDataLayout.java79 private int getU11(int at) { argument
80 return data.getJByteAt(offset + at) & 0xff;
83 private int getU22(int at) { argument
84 return data.getJShortAt(offset + at) & 0xffff;
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DArrayType.java299 ArrayType<?> at = (ArrayType<?>) elementType;
300 this.dimension = at.getDimension() + dimension;
301 this.elementType = at.getElementOpenType();
302 this.primitiveArray = at.isPrimitiveArray();
456 ArrayType<?> at = (ArrayType<?>) elementType;
457 dimension += at.getDimension();
458 elementType = at.getElementOpenType();
459 isPrimitiveArray = at.isPrimitiveArray();
642 ArrayType<?> at = (ArrayType<?>) ot;
643 return (at
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DoopRecorder.cpp77 return _handles->at(index - first_index);
107 int* cloc = _indexes->cache_location(_handles->at(i));
135 if (cindex >= first_index && _handles->at(cindex - first_index) == h) {
144 // Not found in cache, due to a cache collision. (Or, no cache at all.)
147 if (_handles->at(i) == h) {
H A DexceptionHandlerTable.cpp91 scope_depth = scope_depths_from_top_scope->at(i);
93 add_entry(HandlerTableEntry(handler_bcis->at(i), handler_pcos->at(i), scope_depth));
94 assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->pco() == handler_pcos->at(i), "entry not added correctly (1)");
95 assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->scope_depth() == scope_depth, "entry not added correctly (2)");
125 tty->print_cr(" bci %d at scope depth %d -> pco %d", t->bci(), t->scope_depth(), t->pco());
176 uint ImplicitExceptionTable::at( uint exec_off ) const {
226 fatal(err_msg("Invalid offset in ImplicitExceptionTable at " PTR_FORMAT, _data));
/openjdk7/hotspot/src/share/vm/runtime/
H A DmonitorChunk.hpp55 BasicObjectLock* at(int index) { assert(index >= 0 && index < number_of_monitors(), "out of bounds check"); return &monitors()[index]; } function in class:MonitorChunk
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.cpp44 if (at(curr)->is_empty()) {
63 assert(at(i)->is_empty(), "post-condition");
115 assert(next_bottom == at(index - 1)->end(), "invariant");
130 // assert failure at(index) below.
132 HeapRegion* hr = at(index);
146 if (!at(index)->is_empty()) {
189 bool res = blk->doHeapRegion(at(i));
196 bool res = blk->doHeapRegion(at(i));
214 assert(_allocated_length > 0, "we should have at least one region committed");
220 HeapWord* end = at(
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/generator/
H A DWrapperGenerator.java945 AtomicType at = (AtomicType)iter.next();
946 if (at.isIn()) {
947 pw.println("\t" + at.getJavaType() + " _" + at.getName() + ";");
949 pw.println("\tlong " + at.getName() + "_ptr = unsafe.allocateMemory(Native.get" + at.getTypeUpperCase() + "Size());");
956 AtomicType at = (AtomicType)iter.next();
957 if (at.isIn() || at.isInOut()) {
962 pw.print("\t\t" + at
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableNUMASpace.cpp55 delete lgrp_spaces()->at(i);
90 LGRPSpace *ls = lgrp_spaces()->at(i);
150 s += lgrp_spaces()->at(i)->space()->used_in_words();
158 s += lgrp_spaces()->at(i)->space()->free_in_words();
176 assert(false, "There should be at least one locality group");
185 return lgrp_spaces()->at(i)->space()->capacity_in_bytes();
196 assert(false, "There should be at least one locality group");
204 return lgrp_spaces()->at(i)->space()->free_in_bytes();
215 assert(false, "There should be at least one locality group");
223 return lgrp_spaces()->at(
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java48 * If you write code that depends on this, you do so at your own risk.
262 JCErroneous err = F.at(pos).Erroneous(errs);
276 * unless one was already reported at the same position.
285 * arguments, unless one was already reported at the same position.
303 /** Generate a syntax error at current position unless one was already
304 * reported at the same position.
310 /** Generate a syntax error at current position unless one was
311 * already reported at the same position.
329 /** Report an illegal start of expression/type error at given position.
340 /** Report an illegal start of expression/type error at curren
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeBipush.java49 public static BytecodeBipush at(Method method, int bci) { method in class:BytecodeBipush
57 /** Like at, but returns null if the BCI is not at bipush */
63 public static BytecodeBipush at(BytecodeStream bcs) { method in class:BytecodeBipush
H A DBytecodeIf.java51 public static BytecodeIf at(Method method, int bci) { method in class:BytecodeIf
59 /** Like at, but returns null if the BCI is not at some ifxxx bytecode */
65 public static BytecodeIf at(BytecodeStream bcs) { method in class:BytecodeIf
H A DBytecodeIinc.java50 public static BytecodeIinc at(Method method, int bci) { method in class:BytecodeIinc
58 /** Like at, but returns null if the BCI is not at iinc */
64 public static BytecodeIinc at(BytecodeStream bcs) { method in class:BytecodeIinc
H A DBytecodeMultiANewArray.java53 public static BytecodeMultiANewArray at(Method method, int bci) { method in class:BytecodeMultiANewArray
61 /** Like at, but returns null if the BCI is not at multianewarray */
67 public static BytecodeMultiANewArray at(BytecodeStream bcs) { method in class:BytecodeMultiANewArray
H A DBytecodeRet.java45 public static BytecodeRet at(Method method, int bci) { method in class:BytecodeRet
53 /** Like at, but returns null if the BCI is not at ret */
59 public static BytecodeRet at(BytecodeStream bcs) { method in class:BytecodeRet
H A DBytecodeSipush.java49 public static BytecodeSipush at(Method method, int bci) { method in class:BytecodeSipush
57 /** Like at, but returns null if the BCI is not at sipush */
63 public static BytecodeSipush at(BytecodeStream bcs) { method in class:BytecodeSipush
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicIterator.java41 CubicIterator(CubicCurve2D q, AffineTransform at) { argument
43 this.affine = at;
H A DLineIterator.java41 LineIterator(Line2D l, AffineTransform at) { argument
43 this.affine = at;
H A DQuadIterator.java41 QuadIterator(QuadCurve2D q, AffineTransform at) { argument
43 this.affine = at;
H A DRectIterator.java41 RectIterator(Rectangle2D r, AffineTransform at) { argument
46 this.affine = at;
H A DPath2D.java54 * specifically targeted at closed figures.
134 abstract float[] cloneCoordsFloat(AffineTransform at); argument
135 abstract double[] cloneCoordsDouble(AffineTransform at); argument
219 * @param at the specified {@code AffineTransform} object
222 public Float(Shape s, AffineTransform at) { argument
230 this.floatCoords = p2d.cloneCoordsFloat(at);
232 PathIterator pi = s.getPathIterator(at);
240 float[] cloneCoordsFloat(AffineTransform at) { argument
242 if (at == null) {
246 at
251 cloneCoordsDouble(AffineTransform at) argument
696 transform(AffineTransform at) argument
735 getPathIterator(AffineTransform at) argument
949 TxIterator(Path2D.Float p2df, AffineTransform at) argument
1056 Double(Shape s, AffineTransform at) argument
1074 cloneCoordsFloat(AffineTransform at) argument
1086 cloneCoordsDouble(AffineTransform at) argument
1421 transform(AffineTransform at) argument
1464 getPathIterator(AffineTransform at) argument
1674 TxIterator(Path2D.Double p2dd, AffineTransform at) argument
1915 transform(AffineTransform at) argument
1938 createTransformedShape(AffineTransform at) argument
2345 getPathIterator(AffineTransform at, double flatness) argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhistogram.cpp89 elements()->at(i)->print();
90 total += elements()->at(i)->count();
H A DintHisto.cpp50 int cnt = _elements->at(i);
58 int cnt = _elements->at(_max);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderingEngine.java221 AffineTransform at,
232 * The {@code at} parameter specifies a transform that should affect
261 * @param at the transform to be applied to the shape and the
276 AffineTransform at,
360 * feeding the consumer a segment at a time.
420 AffineTransform at,
429 at+", "+
435 target.strokeTo(src, at, bs, thin, normalize, antialias, consumer);
444 AffineTransform at,
453 at
220 strokeTo(Shape src, AffineTransform at, BasicStroke bs, boolean thin, boolean normalize, boolean antialias, PathConsumer2D consumer) argument
275 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
419 strokeTo(Shape src, AffineTransform at, BasicStroke bs, boolean thin, boolean normalize, boolean antialias, PathConsumer2D consumer) argument
443 getAATileGenerator(Shape s, AffineTransform at, Region clip, BasicStroke bs, boolean thin, boolean normalize, int bbox[]) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCAccessibleText.java62 final AccessibleText at = ac.getAccessibleText();
63 if (at == null) return null;
65 return at.getSelectedText();
125 final AccessibleText at = ac.getAccessibleText();
126 if (at == null) return null;
127 // (x, y) passed in as java screen coords - (0, 0) at upper-left corner of screen.
133 return at.getIndexAtPoint(new Point(localX, localY));
146 final AccessibleText at = ac.getAccessibleText();
147 if (at == null) return new int[2];
150 ret[0] = at
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DDeferredStepTest.sh38 # Run this script to see the bug. See comments at the end
93 stop at DeferredStepTest$jj1:8
94 stop at DeferredStepTest$jj2:20
113 cmd stop at $classname'$jj1:8'
114 cmd stop at $classname'$jj2:20'
163 Since both threads are running at the same time, these

Completed in 107 milliseconds

1234567891011>>