Searched defs:top (Results 26 - 50 of 128) sorted by relevance

123456

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DJNIHandleBlock.java70 if (top() < blockSizeInOops) {
76 public int top() { method in class:JNIHandleBlock
82 for (int i = 0; i < top(); i++) {
118 /** Debugging routine: returns the index (0..top() - 1) of the
122 for (int i = 0; i < top(); i++) {
135 Address handleEnd = addr.addOffsetTo(handlesField.getOffset() + top() * VM.getVM().getOopSize());
142 Assert.that(x < top(), "out of bounds");
H A DPerfMemory.java67 public static Address top() { method in class:PerfMemory
H A DThreadLocalAllocBuffer.java67 public Address top() { return topField.getValue(addr); } method in class:ThreadLocalAllocBuffer
90 if (top() == null) {
93 return (start().lessThanOrEqual(p) && top().greaterThan(p));
98 top() + "," + end() + ")");
H A DVFrame.java51 top frame in the debugging system (obtained via
156 /** Answers if the this is the top vframe in the frame, i.e., if the
162 /** Returns top vframe within same frame (see isTop()) */
163 public VFrame top() { method in class:VFrame
179 guess. This is used in the debugging system to handle the top
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DMatteBorder.java56 * @param top the top inset of the border
62 public MatteBorder(int top, int left, int bottom, int right, Color matteColor) { argument
63 super(top, left, bottom, right);
80 * @param top the top inset of the border
86 public MatteBorder(int top, int left, int bottom, int right, Icon tileIcon) { argument
87 super(top, left, bottom, right);
105 * the tile icon, where the top and bottom will be equal to the
129 g.fillRect(0, 0, width - insets.right, insets.top);
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.hpp41 Node* top() const { return C->top(); } function in class:PhaseMacroExpand
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxButton.java94 int top = 0;
116 painter.paint(g, this, left, top, width, height);
117 doRendererPaint(g, buttonModel, editable, getInsets(), left, top, width, height);
124 top += insets.top;
127 height -= insets.top + insets.bottom;
152 painter.paint(g, comboBox, left + 2, top - 1, width - 4, height);
154 painter.paint(g, comboBox, left, top, width, height);
159 doRendererPaint(g, buttonModel, editable, insets, left, top, width, height);
163 protected void doRendererPaint(final Graphics g, final ButtonModel buttonModel, final boolean editable, final Insets insets, int left, int top, in argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dhandles.cpp67 oop* top = (oop*) chunk_top; local
68 uintx handles_visited = top - bottom;
69 assert(top >= bottom && top <= (oop*) chunk->top(), "just checking");
72 while (bottom < top) {
90 handles_visited += chunk_oops_do(f, k, k->top());
110 // Save current top
164 // Roll back arena to saved top markers
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/parser/
H A DCustomizationContextChecker.java147 /** Gets the stack top. */
148 private QName top() { method in class:CustomizationContextChecker
156 && top().getNamespaceURI().equals(WellKnownNamespace.XML_SCHEMA) ) {
157 // we hit a JAXB customization. the stack top should be
/openjdk7/jdk/test/java/io/File/
H A DSymLinks.java37 final static File top = new File(System.getProperty("test.dir", ".")); field in class:SymLinks
41 final static File file = new File(top, "foofile");
42 final static File link2file = new File(top, "link2file");
43 final static File link2link2file = new File(top, "link2link2file");
45 final static File dir = new File(top, "foodir");
46 final static File link2dir = new File(top, "link2dir");
47 final static File link2link2dir = new File(top, "link2link2dir");
49 final static File link2nobody = new File(top, "link2nobody");
50 final static File link2link2nobody = new File(top, "link2link2nobody");
72 mklink(link2nobody, new File(top, "DoesNotExis
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.hpp72 HeapWord* top() const { return _top; } function in class:PSPromotionLAB
79 MemRegion used_region() { return MemRegion(bottom(), top()); }
88 size_t used() const { return byte_size(bottom(), top()); }
89 size_t free() const { return byte_size(top(), end()); }
100 HeapWord* obj = top();
133 HeapWord* obj = top();
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableSpace.hpp40 // Invariant: (ImmutableSpace +) bottom() <= top() <= end()
41 // top() is inclusive and end() is exclusive.
69 HeapWord* top() const { return _top; } function in class:MutableSpace
81 MemRegion used_region() { return MemRegion(bottom(), top()); }
93 // Does the usual initialization but optionally resets top to bottom.
107 // Used to save the space's current top for later use during mangling.
124 virtual size_t used_in_words() const { return pointer_delta(top(), bottom()); }
125 virtual size_t free_in_words() const { return pointer_delta(end(), top()); }
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifTreeUI.java69 protected void paintVerticalLine( Graphics g, JComponent c, int x, int top, int bottom ) argument
72 g.fillRect( x, top, 2, bottom - top + 2 );
74 g.fillRect( x - 1, top, 2, bottom - top + 2 );
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DContinuation.java91 * @param top The name of the object that is to be resolved/operated upon.
97 public Continuation(Name top, Hashtable environment) { argument
99 starter = top;
/openjdk7/hotspot/src/cpu/zero/vm/
H A DmethodHandles_zero.cpp39 // Trim back the stack to put the parameters at the top
56 oop top = STACK_OBJECT(-1); local
60 return top;
/openjdk7/hotspot/src/share/vm/adlc/
H A Darena.hpp89 char* top() const { return bottom() + _len; } function in class:Chunk
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvFill.java59 List<String> top = new ArrayList<String>(); field in class:SourceFile
211 top.add(line);
230 top = filledSF.top;
250 Iterator it = top.iterator();
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp190 template <MEMFLAGS F> void BasicHashtable<F>::copy_table(char** top, char* end) { argument
194 intptr_t *plen = (intptr_t*)(*top);
195 *top += sizeof(*plen);
202 if (*top + entry_size() > end) {
205 *p = (BasicHashtableEntry<F>*)memcpy(*top, *p, entry_size());
206 *top += entry_size();
209 *plen = (char*)(*top) - (char*)plen - sizeof(*plen);
257 template <MEMFLAGS F> void BasicHashtable<F>::copy_buckets(char** top, char* end) { argument
259 *(intptr_t*)(*top) = len;
260 *top
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageCreate.c69 * mlib_u8 top,
85 * y y coordinate of the top border in the source image
89 * top clipping box top padding
555 mlib_u8 top,
562 (top + bottom) >= img -> height) return MLIB_OUTOFRANGE;
565 img -> paddings[1] = top;
553 mlib_ImageSetPaddings(mlib_image *img, mlib_u8 left, mlib_u8 top, mlib_u8 right, mlib_u8 bottom) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DBorderFactory.java66 * border. To specify widths individually for the top,
102 * (In a raised border, highlights are on top and shadows
115 * (In a lowered border, shadows are on top and highlights
128 * (In a lowered border, shadows are on top and highlights
202 * In a raised border, highlights are on top and shadows are underneath.
219 * In a lowered border, shadows are on top and highlights are underneath.
374 * the default text position (sitting on the top line),
388 * the default text position (sitting on the top line),
403 * with default positioning (sitting on the top line),
437 *<li><code>TitledBorder.TOP</code> (sitting on the top lin
562 createEmptyBorder(int top, int left, int bottom, int right) argument
610 createMatteBorder(int top, int left, int bottom, int right, Color color) argument
634 createMatteBorder(int top, int left, int bottom, int right, Icon tileIcon) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DBorderUIResource.java134 public EmptyBorderUIResource(int top, int left, int bottom, int right) { argument
135 super(top, left, bottom, right);
196 public MatteBorderUIResource(int top, int left, int bottom, int right, argument
198 super(top, left, bottom, right, color);
201 public MatteBorderUIResource(int top, int left, int bottom, int right, argument
203 super(top, left, bottom, right, tileIcon);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DCompositeView.java586 * with the top, left, bottom, and right insets removed.
633 top = (short) StyleConstants.getSpaceAbove(attr);
642 * @param top the top inset >= 0
647 protected void setInsets(short top, short left, short bottom, short right) { argument
648 this.top = top;
673 * Gets the top inset.
678 return top;
791 private short top; field in class:CompositeView
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp189 VerificationType top = VerificationType::top_type(); local
197 if (locals()[i] == this_type && target->locals()[i] != top) {
203 if (stack()[i] == this_type && target->stack()[i] != top) {
261 VerificationType top = _stack[--_stack_size]; local
263 top, verifier(), CHECK_(VerificationType::bogus_type()));
271 return top;
H A DstackMapFrame.hpp223 // Pop and return the top type on stack without verifying.
231 VerificationType top = _stack[--_stack_size]; local
232 return top;
235 // Pop and return the top type on stack type array after verifying it
239 VerificationType top = _stack[_stack_size - 1]; local
241 top, verifier(), CHECK_(VerificationType::bogus_type()));
244 return top;
H A DsymbolTable.hpp223 static void copy_buckets(char** top, char*end) { argument
224 the_table()->Hashtable<Symbol*, mtSymbol>::copy_buckets(top, end);
226 static void copy_table(char** top, char*end) { argument
227 the_table()->Hashtable<Symbol*, mtSymbol>::copy_table(top, end);
315 static void copy_buckets(char** top, char*end) { argument
316 the_table()->Hashtable<oop, mtSymbol>::copy_buckets(top, end);
318 static void copy_table(char** top, char*end) { argument
319 the_table()->Hashtable<oop, mtSymbol>::copy_table(top, end);

Completed in 145 milliseconds

123456