Searched defs:flat (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJCheckBox.java80 /** Identifies a change to the flat property. */
83 private boolean flat = false; field in class:JCheckBox
189 * Some look and feels might not implement flat borders;
192 * @param b <code>true</code> requests that the border be painted flat;
198 * description: Whether the border is painted flat.
202 boolean oldValue = flat;
203 flat = b;
204 firePropertyChange(BORDER_PAINTED_FLAT_CHANGED_PROPERTY, oldValue, flat);
219 return flat;
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifIconFactory.java106 boolean flat = false;
109 flat = ((JCheckBox)b).isBorderPaintedFlat();
143 if(flat) {
154 drawCheckBezel(g,x,y,csize,true,false,false,flat);
157 drawCheckBezel(g,x,y,csize,true,true,false,flat);
160 drawCheckBezel(g,x,y,csize,false,false,true,flat);
161 } else if(!flat) {
195 boolean shade, boolean out, boolean check, boolean flat)
204 if(!flat) {
194 drawCheckBezel(Graphics g, int x, int y, int csize, boolean shade, boolean out, boolean check, boolean flat) argument
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.cpp1578 const TypePtr* flat = flatten_alias_type(adr_type); local
1581 assert(flat == flatten_alias_type(flat), "idempotent");
1582 assert(flat != TypePtr::BOTTOM, "cannot alias-analyze an untyped ptr");
1583 if (flat->isa_oopptr() && !flat->isa_klassptr()) {
1584 const TypeOopPtr* foop = flat->is_oopptr();
1590 assert(flat == flatten_alias_type(flat), "exact bit doesn't matter");
1595 if (alias_type(i)->adr_type() == flat) {
[all...]

Completed in 39 milliseconds