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

1234567891011>>

/openjdk9/jdk/src/java.desktop/unix/native/libawt_xawt/awt/
H A Dawt_Insets.h30 jfieldID bottom; member in struct:InsetsIDs
H A Dawt_Insets.c38 CHECK_NULL(insetsIDs.bottom = (*env)->GetFieldID(env, cls, "bottom", "I"));
/openjdk9/jdk/make/src/classes/build/tools/generatenimbus/
H A DInsets.java33 @XmlAttribute int bottom; field in class:Insets
40 public Insets(int top, int left, int bottom, int right) { argument
43 this.bottom = bottom;
50 uiSuffix, top, left, bottom, right);
H A DBorder.java40 @XmlAttribute private int bottom; field in class:Border
47 painter, top, left, bottom, right);
50 top, left, bottom, right);
/openjdk9/jdk/src/java.desktop/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...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/border/
H A DEmptyBorder.java65 * The bottom inset of the border.
67 protected int bottom; field in class:EmptyBorder
73 * @param bottom the bottom inset of the border
76 public EmptyBorder(int top, int left, int bottom, int right) { argument
79 this.bottom = bottom;
91 this.bottom = borderInsets.bottom;
110 insets.bottom
[all...]
H A DMatteBorder.java65 * @param bottom the bottom inset of the border
69 public MatteBorder(int top, int left, int bottom, int right, Color matteColor) { argument
70 super(top, left, bottom, right);
89 * @param bottom the bottom inset of the border
93 public MatteBorder(int top, int left, int bottom, int right, Icon tileIcon) { argument
94 super(top, left, bottom, right);
112 * the tile icon, where the top and bottom will be equal to the
138 g.fillRect(insets.left, height - insets.bottom, widt
[all...]
H A DCompoundBorder.java129 ph = ph - nextInsets.bottom - nextInsets.top;
144 insets.top = insets.left = insets.right = insets.bottom = 0;
150 insets.bottom += nextInsets.bottom;
157 insets.bottom += nextInsets.bottom;
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/
H A DInsetsUIResource.java57 * @param bottom the inset from the bottom
60 public InsetsUIResource(int top, int left, int bottom, int right) { argument
61 super(top, left, bottom, right);
/openjdk9/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
/openjdk9/hotspot/src/share/vm/gc/parallel/
H A DimmutableSpace.cpp32 HeapWord* bottom = mr.start(); local
35 assert(Universe::on_page_boundary(bottom) && Universe::on_page_boundary(end),
38 _bottom = bottom;
43 HeapWord* obj_addr = bottom();
52 HeapWord* p = bottom();
67 tty->print_cr(" [" INTPTR_FORMAT_W(#-6) "," INTPTR_FORMAT_W(#-6) ")", p2i(bottom()), p2i(end()));
73 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 DpsPromotionLAB.hpp71 HeapWord* bottom() const { return _bottom; } function in class:PSPromotionLAB
80 MemRegion used_region() { return MemRegion(bottom(), top()); }
88 size_t capacity() const { return byte_size(bottom(), end()); }
89 size_t used() const { return byte_size(bottom(), top()); }
/openjdk9/hotspot/src/cpu/x86/vm/
H A Dc2_init_x86.cpp44 int bottom = ConcreteRegisterImpl::max_fpr; local
45 int top = bottom + delta;
46 int middle = bottom + (delta / 2);
51 for (int i = bottom; i < middle; i += xmm_slots) {
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DContiguousSpace.java62 return end().minus(bottom());
67 return top().minus(bottom());
78 return new MemRegion(bottom(), top());
84 res.add(new MemRegion(bottom(), top()));
90 return (bottom().lessThanOrEqual(p) && top().greaterThan(p));
94 tty.print(" [" + bottom() + "," +
H A DSpace.java40 <P> Invariant: bottom() and end() are on page_size boundaries and: </P>
42 <P> bottom() <= top() <= end() </P>
69 public Address bottom() { return bottomField.getValue(addr); } method in class:Space
75 return new MemRegion(bottom(), end());
96 public long capacity() { return end().minus(bottom()); }
104 return (bottom().lessThanOrEqual(p) && end().greaterThan(p));
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/metal/
H A DMetalTabbedPaneUI.java120 int bottom = y + (h-1);
125 paintLeftTabBorder(tabIndex, g, x, y, w, h, bottom, right, isSelected);
128 paintBottomTabBorder(tabIndex, g, x, y, w, h, bottom, right, isSelected);
131 paintRightTabBorder(tabIndex, g, x, y, w, h, bottom, right, isSelected);
135 paintTopTabBorder(tabIndex, g, x, y, w, h, bottom, right, isSelected);
149 * @param btm bottom
162 int bottom = h - 1;
209 g.drawLine( right, 1, right, bottom );
222 g.drawLine(0, 6, 0, bottom);
227 g.drawLine( 0, 0, 0, bottom );
[all...]
/openjdk9/hotspot/src/share/vm/gc/shared/
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
210 walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top) argument
[all...]
/openjdk9/jdk/src/java.desktop/windows/native/common/awt/utility/
H A Drect.h41 (r).bottom=(yy)+(hh); \
44 #define RECT_INC_HEIGHT(r) (r).bottom++
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/parallel/
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));
/openjdk9/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXAbstractMenuItem.java35 void paint(Graphics g, int top, int bottom, int width, int shortcutOffset, boolean selected); argument
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DObjectHistogramElement.java87 Klass bottom = oak.getBottomKlass();
90 if (bottom instanceof TypeArrayKlass) {
91 buf.append(((TypeArrayKlass) bottom).getElementTypeName());
92 } else if (bottom instanceof InstanceKlass) {
93 buf.append(bottom.getName().asString().replace('/', '.'));
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/
H A DSynthBorder.java76 this.insets.bottom, this.insets.right);
80 insets.bottom = this.insets.bottom;
89 insets.top = insets.bottom = insets.left = insets.right = 0;
121 insets.bottom += margin.bottom;
/openjdk9/jdk/src/java.desktop/windows/native/libsplashscreen/
H A Dsplashscreen_config.h53 (r).right=(xx)+(ww); (r).bottom=(yy)+(hh);
54 #define RECT_INC_HEIGHT(r) (r).bottom++;

Completed in 124 milliseconds

1234567891011>>