Searched refs:TOP (Results 1 - 25 of 79) sorted by relevance

1234

/openjdk7/jdk/test/javax/swing/border/
H A DTest4760089.java42 border = new TitledBorder(border, "LEFT", TitledBorder.LEFT, TitledBorder.TOP);
43 border = new TitledBorder(border, "RIGHT", TitledBorder.RIGHT, TitledBorder.TOP);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingConstants.java40 * and box-orientation constants (TOP, etc.).
50 public static final int TOP = 1; field in interface:SwingConstants
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DMediaTray.java55 public static final MediaTray TOP = new MediaTray(0); field in class:MediaTray
114 TOP,
/openjdk7/hotspot/src/share/vm/opto/
H A Drootnode.cpp40 if( phase->type(in(i)) == Type::TOP ) {
41 del_req(i--); // Delete TOP inputs
81 return ( phase->type(in(TypeFunc::Control)) == Type::TOP)
82 ? Type::TOP
H A Dconnode.cpp52 case T_VOID: return new (C) ConNode ( Type::TOP );
118 if( phase->type(in(Condition)) == Type::TOP )
187 if( phase->type(in(Condition)) == Type::TOP )
188 return Type::TOP;
399 if( in(0) && phase->type(in(0)) == Type::TOP ) return Type::TOP;
409 if( t1 == Type::TOP ) assert(ft == Type::TOP, "special case #1");
411 if (rt->empty()) assert(ft == Type::TOP, "special case #2");
417 assert(ft == Type::TOP, "specia
[all...]
H A Dmultnode.cpp77 if (in(0) == NULL) return Type::TOP;
79 if( tb == Type::TOP ) return Type::TOP;
112 if (t == Type::TOP) return; // multi is dead
118 if( !in(0) ) return Type::TOP;
120 if( t == Type::TOP ) return t;
H A Dsubnode.cpp86 // Either input is TOP ==> the result is TOP
87 const Type* t1 = (in1 == this) ? Type::TOP : phase->type(in1);
88 if( t1 == Type::TOP ) return Type::TOP;
89 const Type* t2 = (in2 == this) ? Type::TOP : phase->type(in2);
90 if( t2 == Type::TOP ) return Type::TOP;
147 if( t2 == Type::TOP ) return NULL;
160 if( tadd->singleton() && tadd != Type::TOP ) {
[all...]
H A Daddnode.cpp127 if( con_right && t2 != Type::TOP && // Right input is a constant?
132 if( t12->singleton() && t12 != Type::TOP ) { // Left input is an add of a constant?
164 if( t12->singleton() && t12 != Type::TOP && (add1 != add1->in(1)) &&
182 if( t22->singleton() && t22 != Type::TOP && (add2 != add2->in(1)) &&
207 // Either input is TOP ==> the result is TOP
210 if( t1 == Type::TOP ) return Type::TOP;
211 if( t2 == Type::TOP ) return Type::TOP;
[all...]
H A Ddivnode.cpp492 // Either input is TOP ==> the result is TOP
495 if( t1 == Type::TOP ) return Type::TOP;
496 if( t2 == Type::TOP ) return Type::TOP;
591 // Either input is TOP ==> the result is TOP
594 if( t1 == Type::TOP ) return Type::TOP;
[all...]
H A Dmulnode.cpp84 if( t2 == Type::TOP ) return NULL;
99 if( t12->singleton() && t12 != Type::TOP) { // Left input is an add of a constant?
117 if( t12->singleton() && t12 != Type::TOP ) { // Left input is an add of a constant?
144 // Either input is TOP ==> the result is TOP
145 if( t1 == Type::TOP ) return Type::TOP;
146 if( t2 == Type::TOP ) return Type::TOP;
384 // Either input is TOP
[all...]
H A Dcfgnode.cpp50 if( !n ) continue; // Missing inputs are TOP
54 return Type::TOP; // All paths dead? Then so are we
446 // Remove TOP or NULL input paths. If only 1 input path remains, this Region
470 if( phase->type(n) == Type::TOP ) {
471 set_req(i, NULL); // Ignore TOP inputs
563 // During IGVN phase such region will be subsumed by TOP node
564 // so region's phis will have TOP as control node.
807 if (in == NULL || igvn->type(in) == Type::TOP)
848 } else if (n->bottom_type() == Type::TOP
849 || (n->is_Mem() && n->in(MemNode::Address)->bottom_type() == Type::TOP)) {
[all...]
H A DgenerateOptoStub.cpp135 const Type* retval = (jrange->cnt() == TypeFunc::Parms) ? Type::TOP : jrange->field_at(TypeFunc::Parms);
143 rfields[TypeFunc::Parms] = is_fancy_jump ? TypeRawPtr::BOTTOM : Type::TOP;
195 assert( retval != Type::TOP, "" );
H A Dmemnode.cpp219 // compress paths and change unreachable cycles to TOP
265 if (phase->type( mem ) == Type::TOP) return NodeSentinel; // caller will return NULL
277 if (t_adr == Type::TOP) return NodeSentinel; // caller will return NULL
301 // Note: raw address has TOP base and top->higher_equal(TypePtr::NULL_PTR) is true.
346 if (phase->type( mem ) == Type::TOP) return NodeSentinel;
621 if (t == Type::TOP) return NULL; // does not touch memory any more?
1311 if (rc == NULL || phase->type(rc) == Type::TOP)
1373 if (singleton && t == Type::TOP) {
1464 if (phase->type( opt_mem ) == Type::TOP) return NULL;
1539 // Either input is TOP
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKConstants.java97 TOP, enum constant in enum:GTKConstants.PositionType
/openjdk7/jdk/test/javax/swing/JTabbedPane/7010561/
H A Dbug7010561.java38 SwingConstants.TOP,
39 SwingConstants.TOP,
/openjdk7/jdk/test/javax/swing/JTabbedPane/6416920/
H A Dbug6416920.java50 test.layout.padSelectedTab(SwingConstants.TOP, 0);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DFrame.java114 * TOP or DOUBLE + TOP), for local variable types as well as in the operand
194 * The TOP type. This is a BASE type.
196 static final int TOP = BASE | 0; field in class:Frame
625 push(TOP);
836 inputLocals[i++] = TOP;
840 inputLocals[i++] = TOP;
890 push(TOP);
902 push(TOP);
911 push(TOP);
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWLabelPeer.java54 label.setVerticalAlignment(SwingConstants.TOP);
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DTitledBorder.java88 static public final int TOP = 2; field in class:TitledBorder
260 case TOP:
314 if ((position != TOP) && (position != BOTTOM)) {
361 case TOP: {
480 case TOP:
586 case TOP:
620 case TitledBorder.TOP:
648 if (s.equalsIgnoreCase("TOP")) {
649 return TOP;
664 return TOP;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTabbedPaneUI.java144 if (tabPlacement == TOP) {
178 if (tabPlacement == TOP || tabPlacement == BOTTOM) {
222 case TOP:
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifTabbedPaneUI.java97 // Draw unbroken line if tabs are not on TOP, OR
100 if (tabPlacement != TOP || selectedIndex < 0 ||
174 case TOP:
220 case TOP:
261 case TOP:
292 case TOP:
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSSBorder.java59 final static int TOP = 0, RIGHT = 1, BOTTOM = 2, LEFT = 3; field in class:CSSBorder
134 * Return an array of border widths in the TOP, RIGHT, BOTTOM, LEFT order.
200 insets.set(widths[TOP], widths[LEFT], widths[BOTTOM], widths[RIGHT]);
216 int intY = y + widths[TOP];
218 int intHeight = height - (widths[TOP] + widths[BOTTOM]);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaOptionPaneUI.java76 iconLabel.setVerticalAlignment(SwingConstants.TOP);
H A DAquaTabbedPaneCopyFromBasicUI.java600 case SwingConstants.TOP:
628 case SwingConstants.TOP:
686 case SwingConstants.TOP:
770 * <code>JTabbedPane.TOP</code>, <code>JTabbedPane.BOTTOM</code>,
841 return tabPane.getTabPlacement() == TOP || tabPane.getTabPlacement() == BOTTOM;
858 * For tabs placed on TOP and BOTTOM, this righthand torn edge is created by
884 case TOP:
917 if (tabPlacement == SwingConstants.TOP || tabPlacement == SwingConstants.BOTTOM) {
946 case TOP:
1032 case TOP
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java629 case JTabbedPane.TOP:
659 case JTabbedPane.TOP:
722 case JTabbedPane.TOP:
809 * <code>JTabbedPane.TOP</code>, <code>JTabbedPane.BOTTOM</code>,
892 return tabPane.getTabPlacement() == TOP || tabPane.getTabPlacement() == BOTTOM;
909 * For tabs placed on TOP and BOTTOM, this righthand torn edge is created by
935 case TOP:
968 if (tabPlacement == JTabbedPane.TOP || tabPlacement == JTabbedPane.BOTTOM) {
998 case TOP:
1112 case TOP
[all...]

Completed in 156 milliseconds

1234