Searched refs:bottom (Results 1 - 25 of 372) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Insets.h30 jfieldID bottom; member in struct:InsetsIDs
H A Dawt_Insets.c38 insetsIDs.bottom = (*env)->GetFieldID(env, cls, "bottom", "I");
/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/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...]
H A DCompoundBorder.java122 ph = ph - nextInsets.bottom - nextInsets.top;
137 insets.top = insets.left = insets.right = insets.bottom = 0;
143 insets.bottom += nextInsets.bottom;
150 insets.bottom += nextInsets.bottom;
/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);
/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/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 DliveRange.hpp38 LiveRange(HeapWord* bottom, HeapWord* top): MemRegion(bottom, top) {} argument
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()); }
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
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);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DContiguousSpace.java61 return end().minus(bottom());
66 return top().minus(bottom());
77 return new MemRegion(bottom(), top());
83 res.add(new MemRegion(bottom(), top()));
89 return (bottom().lessThanOrEqual(p) && top().greaterThan(p));
93 tty.print(" [" + bottom() + "," +
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/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTabbedPaneUI.java99 int bottom = y + (h-1);
104 paintLeftTabBorder(tabIndex, g, x, y, w, h, bottom, right, isSelected);
107 paintBottomTabBorder(tabIndex, g, x, y, w, h, bottom, right, isSelected);
110 paintRightTabBorder(tabIndex, g, x, y, w, h, bottom, right, isSelected);
114 paintTopTabBorder(tabIndex, g, x, y, w, h, bottom, right, isSelected);
128 int bottom = h - 1;
175 g.drawLine( right, 1, right, bottom );
188 g.drawLine(0, 6, 0, bottom);
193 g.drawLine( 0, 0, 0, bottom );
197 g.drawLine( 0, 6, 0, bottom );
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A Ddefault.css41 margin-bottom: 10}
46 margin-bottom: 10}
51 margin-bottom: 10}
56 margin-bottom: 10}
61 margin-bottom: 10}
66 margin-bottom: 10}
69 margin-bottom: 0}
74 margin-bottom: 0}
79 margin-bottom: 0}
84 margin-bottom
[all...]
/openjdk7/jdk/src/windows/native/sun/awt/utility/
H A Drect.h41 (r).bottom=(yy)+(hh); \
44 #define RECT_INC_HEIGHT(r) (r).bottom++
/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));
H A DMutableSpace.java61 return top().minus(bottom());
67 res.add(new MemRegion(bottom(), top()));
72 tty.print(" [" + bottom() + "," +
/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/oops/
H A DObjectHistogramElement.java91 Klass bottom = oak.getBottomKlass();
94 if (bottom instanceof TypeArrayKlass) {
95 buf.append(((TypeArrayKlass) bottom).getElementTypeName());
96 } else if (bottom instanceof InstanceKlass) {
97 buf.append(bottom.getName().asString().replace('/', '.'));
/openjdk7/hotspot/src/share/vm/memory/
H A Dspace.cpp76 HeapWord* bottom,
86 for (; bottom < top; bottom += _sp->block_size(bottom)) {
93 if (_sp->block_is_obj(bottom) &&
94 !_sp->obj_allocated_since_save_marks(oop(bottom))) {
95 oop(bottom)->oop_iterate(_cl, mr);
121 HeapWord* bottom = mr.start(); local
137 bottom_obj = _sp->block_start(bottom);
140 assert(bottom_obj <= bottom, "jus
75 walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top) argument
209 walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DHorizBagLayout.java91 dim.height += insets.top + insets.bottom;
117 dim.height += insets.top + insets.bottom;
132 int bottom = target.size().height - insets.bottom;
140 comp.resize(compWidth, bottom - top);
142 comp.reshape(left, top, d.width, bottom - top);
/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_config.h52 (r).right=(xx)+(ww); (r).bottom=(yy)+(hh);
53 #define RECT_INC_HEIGHT(r) (r).bottom++;

Completed in 166 milliseconds

1234567891011>>