Searched defs:bottom (Results 1 - 25 of 75) sorted by relevance

123

/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Insets.h30 jfieldID bottom; member in struct:InsetsIDs
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DInsetsUIResource.java52 public InsetsUIResource(int top, int left, int bottom, int right) { argument
53 super(top, left, bottom, right);
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/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.hpp70 G1BlockOffsetTable(HeapWord* bottom, HeapWord* end) : argument
71 _bottom(bottom), _end(end)
355 // The space may not have it's bottom and top set yet, which is why the
502 // bottom of the covered region.
H A Dg1HRPrinter.cpp81 HeapWord* bottom = hr->bottom(); local
86 action_str, type_str, bottom, top);
89 action_str, type_str, bottom);
94 action_str, bottom, top);
97 action_str, bottom);
102 void G1HRPrinter::print(ActionType action, HeapWord* bottom, HeapWord* end) { argument
106 action_str, bottom, end);
H A Dg1CardCounts.cpp170 HeapWord* bottom = hr->bottom(); local
185 const jbyte* from_card_ptr = _ct_bs->byte_for_const(bottom);
190 assert(start_addr == hr->bottom(), "alignment");
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DimmutableSpace.cpp33 HeapWord* bottom = mr.start(); local
36 assert(Universe::on_page_boundary(bottom) && Universe::on_page_boundary(end),
39 _bottom = bottom;
44 HeapWord* obj_addr = bottom();
53 HeapWord* p = bottom();
68 tty->print_cr(" [%#-6lx,%#-6lx)", bottom(), end());
74 HeapWord* p = bottom();
H A DimmutableSpace.hpp33 // Invariant: bottom() and end() are on page_size boundaries and
34 // bottom() <= end()
44 HeapWord* bottom() const { return _bottom; } function in class:ImmutableSpace
47 MemRegion region() const { return MemRegion(bottom(), end()); }
58 size_t capacity_in_words() const { return pointer_delta(end(), bottom()); }
H A DliveRange.hpp38 LiveRange(HeapWord* bottom, HeapWord* top): MemRegion(bottom, top) {} argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DInsets.java63 * The inset from the bottom.
70 public int bottom; field in class:Insets
97 * specified top, left, bottom, and right insets.
100 * @param bottom the inset from the bottom.
103 public Insets(int top, int left, int bottom, int right) { argument
106 this.bottom = bottom;
111 * Set top, left, bottom, and right to the specified values
115 * @param bottom th
119 set(int top, int left, int bottom, int right) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/redefineMethod/
H A DDifferent_RedefineSubTarg.java24 void bottom() { method in class:RedefineSubTarg
29 (new RedefineSubTarg()).bottom(); // 29
H A DRedefineSubTarg.java23 void bottom() { method in class:RedefineSubTarg
28 (new RedefineSubTarg()).bottom(); // 28
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DEmptyBorder.java51 protected int left, right, top, bottom; field in class:EmptyBorder
57 * @param bottom the bottom inset of the border
60 public EmptyBorder(int top, int left, int bottom, int right) { argument
63 this.bottom = bottom;
75 this.bottom = borderInsets.bottom;
94 insets.bottom = bottom;
[all...]
H A DMatteBorder.java58 * @param bottom the bottom inset of the border
62 public MatteBorder(int top, int left, int bottom, int right, Color matteColor) { argument
63 super(top, left, bottom, right);
82 * @param bottom the bottom 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
131 g.fillRect(insets.left, height - insets.bottom, widt
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.cpp40 HeapWord* bottom = lab.start(); local
43 set_bottom(bottom);
45 set_top(bottom);
H A DpsPromotionLAB.hpp70 HeapWord* bottom() const { return _bottom; } function in class:PSPromotionLAB
79 MemRegion used_region() { return MemRegion(bottom(), top()); }
87 size_t capacity() const { return byte_size(bottom(), end()); }
88 size_t used() const { return byte_size(bottom(), top()); }
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAbstractMenuItem.java35 void paint(Graphics g, int top, int bottom, int width, int shortcutOffset, boolean selected); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/shared/
H A DImmutableSpace.java59 public Address bottom() { return bottomField.getValue(addr); } method in class:ImmutableSpace
65 return new MemRegion(bottom(), end());
79 public long capacity() { return end().minus(bottom()); }
85 return (bottom().lessThanOrEqual(p) && end().greaterThan(p));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSpace.java39 <P> Invariant: bottom() and end() are on page_size boundaries and: </P>
41 <P> bottom() <= top() <= end() </P>
68 public Address bottom() { return bottomField.getValue(addr); } method in class:Space
74 return new MemRegion(bottom(), end());
95 public long capacity() { return end().minus(bottom()); }
103 return (bottom().lessThanOrEqual(p) && end().greaterThan(p));
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.hpp62 BlockOffsetTable(HeapWord* bottom, HeapWord* end): argument
63 _bottom(bottom), _end(end) {
337 // The space may not have its bottom and top set yet, which is why the
/openjdk7/hotspot/src/share/vm/runtime/
H A Dhandles.cpp66 oop* bottom = (oop*) chunk->bottom(); local
68 uintx handles_visited = top - bottom;
69 assert(top >= bottom && top <= (oop*) chunk->top(), "just checking");
72 while (bottom < top) {
73 // assert((*bottom)->is_oop(), "handle should point to oop");
74 assert(Universe::heap()->is_in(*bottom), "handle should be valid heap address");
75 f->do_oop(bottom++);
/openjdk7/hotspot/src/share/vm/adlc/
H A Darena.hpp88 char* bottom() const { return ((char*) this) + sizeof(Chunk); } function in class:Chunk
89 char* top() const { return bottom() + _len; }
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageCreate.c71 * mlib_u8 bottom)
91 * bottom clipping box bottom padding
557 mlib_u8 bottom)
562 (top + bottom) >= img -> height) return MLIB_OUTOFRANGE;
567 img -> paddings[3] = bottom;
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.java67 * bottom, left, and right, use
440 *<li><code>TitledBorder.BOTTOM</code> (sitting on the bottom line)
478 *<li><code>TitledBorder.BOTTOM</code> (sitting on the bottom line)
517 *<li><code>TitledBorder.BOTTOM</code> (sitting on the bottom line)
539 * of the top, bottom, left, and right sides are all zero.)
549 * no drawing, specifying the width of the top, left, bottom, and
556 * @param bottom an integer specifying the width of the bottom,
563 int bottom, int right) {
564 return new EmptyBorder(top, left, bottom, righ
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/text/
H A DCompositeView.java586 * with the top, left, bottom, and right insets removed.
635 bottom = (short) StyleConstants.getSpaceBelow(attr);
644 * @param bottom the bottom inset >= 0
647 protected void setInsets(short top, short left, short bottom, short right) { argument
651 this.bottom = bottom;
682 * Gets the bottom inset.
687 return bottom;
792 private short bottom; field in class:CompositeView
[all...]

Completed in 114 milliseconds

123