Searched refs:Label (Results 1 - 25 of 182) sorted by relevance

12345678

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DHandler.java72 Label start;
77 Label end;
82 Label handler;
H A DMethodVisitor.java175 * types by Label objects (this label designates the NEW instruction
292 void visitJumpInsn(int opcode, Label label);
298 * @param label a {@link Label Label} object.
300 void visitLabel(Label label);
334 void visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels);
344 void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels);
371 void visitTryCatchBlock(Label star
[all...]
H A DEdge.java63 * An edge in the control flow graph of a method body. See {@link Label Label}.
98 Label successor;
102 * See {@link Label#successors successors}.
H A DLabel.java68 public class Label { class
190 * represented by the Label object that corresponds to the first instruction
249 Label successor;
265 Label next;
274 public Label() { method in class:Label
292 throw new IllegalStateException("Label offset position has not been resolved yet");
442 Label getFirst() {
457 if ((status & Label.VISITED) != 0) {
471 boolean inSameSubroutine(final Label block) {
506 void visitSubroutine(final Label JS
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DCodeContext.java29 import sun.tools.asm.Label;
37 Label breakLabel;
38 Label contLabel;
51 this.breakLabel = new Label();
52 this.contLabel = new Label();
58 this.breakLabel = new Label();
62 this.breakLabel = new Label();
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DinterpreterGenerator_sparc.hpp43 void generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue);
44 void generate_counter_overflow(Label& Lcontinue);
H A DcodeBuffer_sparc.hpp35 bool is_backward_branch(Label& L) {
H A Dc1_MacroAssembler_sparc.hpp37 Label& slow_case // continuation point if fast allocation fails
44 void lock_object (Register Rmark, Register Roop, Register Rbox, Register Rscratch, Label& slow_case);
45 void unlock_object(Register Rmark, Register Roop, Register Rbox, Label& slow_case);
67 Label& slow_case // continuation point if fast allocation fails
84 Label& slow_case // continuation point if fast allocation fails
/openjdk7/hotspot/src/cpu/x86/vm/
H A DinterpreterGenerator_x86.hpp45 void generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue);
46 void generate_counter_overflow(Label* do_continue);
H A DcppInterpreterGenerator_x86.hpp41 void generate_counter_incr(Label* overflow, Label* profile_method, Label* profile_method_continue);
42 void generate_counter_overflow(Label* do_continue);
H A Dc1_MacroAssembler_x86.hpp42 Label& slow_case // continuation point if fast allocation fails
54 int lock_object (Register swap, Register obj, Register disp_hdr, Register scratch, Label& slow_case);
60 void unlock_object(Register swap, Register obj, Register lock, Label& slow_case);
79 void allocate_object(Register obj, Register t1, Register t2, int header_size, int object_size, Register klass, Label& slow_case);
92 void allocate_array(Register obj, Register len, Register t, Register t2, int header_size, Address::ScaleFactor f, Register klass, Label& slow_case);
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DCatchData.java39 Label label;
46 this.label = new Label();
52 public Label getLabel() {
H A DLabel.java40 class Label extends Instruction { class in inherits:Instruction
49 public Label() { method in class:Label
59 Label getDestination() {
60 Label lbl = this;
66 lbl = ((Label)next).getDestination();
70 lbl = ((Label)next.value).getDestination();
78 inst = ((Label)inst).getDestination().next;
83 lbl = (Label)inst.value;
85 lbl = new Label();
94 lbl = new Label();
[all...]
H A DTryData.java39 Label endLabel = new Label();
60 public Label getEndLabel() {
H A DSwitchData.java41 Label defaultLabel = new Label();
50 public Label get(int n) {
51 return (Label)tab.get(new Integer(n));
57 public Label get(Integer n) {
58 return (Label)tab.get(n);
64 public void add(int n, Label lbl) {
82 public Label getDefaultLabel() {
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DLabelPeer.java27 import java.awt.Label;
30 * The peer interface for {@link Label}.
45 * @see Label#setText
54 * @see Label#setAlignment(int)
55 * @see Label#CENTER
56 * @see Label#RIGHT
57 * @see Label#LEFT
/openjdk7/jdk/make/tools/sharing/tests/
H A DGHello.java29 import java.awt.Label;
48 Label label = new Label("Hello");
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWLabelPeer.java35 FontMetrics fm = getFontMetrics(((Label)target).getFont());
36 String label = ((Label)target).getText();
59 WLabelPeer(Label target) {
66 Label l = (Label)target;
74 if (align != Label.LEFT) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWLabelPeer.java31 import java.awt.Label;
41 final class LWLabelPeer extends LWComponentPeer<Label, JLabel>
47 LWLabelPeer(final Label target, final PlatformComponent platformComponent) {
98 * Converts {@code Label} alignment constant to the {@code JLabel} constant.
99 * If wrong Label alignment provided returns default alignment.
101 * @param alignment {@code Label} constant.
107 case Label.CENTER:
109 case Label.RIGHT:
/openjdk7/jdk/test/java/awt/print/PrinterJob/ValidatePage/
H A DValidatePage.java40 Label pw, ph, pglm, pgrm, pgiw, pgih, pgtm, pgbm;
42 Label myWidthLabel;
43 Label myHeightLabel;
44 Label myImageableXLabel;
45 Label myImageableYLabel;
46 Label myImageableRightLabel;
47 Label myImageableBottomLabel;
48 Label myImageableWidthLabel;
49 Label myImageableHeightLabel;
50 Label myOrientationLabe
[all...]
/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.inline.hpp101 inline address AbstractAssembler::target(Label& L) {
105 inline int Label::loc_pos() const {
109 inline int Label::loc_sect() const {
113 inline void Label::bind_loc(int pos, int sect) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DLabel.java33 * A <code>Label</code> object is a component for placing text in a
42 * add(new Label("Hi There!"));
43 * add(new Label("Another Label"));
48 * <img src="doc-files/Label-1.gif" alt="Two labels: 'Hi There!' and 'Another label'"
54 public class Label extends Component implements Accessible { class in inherits:Component,Accessible
116 public Label() throws HeadlessException { method in class:Label
131 public Label(String text) throws HeadlessException { method in class:Label
138 * Possible values for <code>alignment</code> are <code>Label.LEFT</code>,
139 * <code>Label
149 public Label(String text, int alignment) throws HeadlessException { method in class:Label
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXLabelPeer.java54 Label target = (Label) this.target;
62 XLabelPeer(Label target) {
109 case Label.LEFT:
113 case Label.RIGHT:
117 case Label.CENTER:
/openjdk7/jdk/test/java/awt/Frame/ResizeAfterSetFont/
H A DResizeAfterSetFont.java51 Label label = new Label("Test Label");
72 "Frame size does not change after Label.setFont()!");
/openjdk7/jdk/test/java/awt/GridLayout/LayoutExtraGaps/
H A DLayoutExtraGaps.java48 Label redLabel = new Label(""+i);
57 Label greenLabel = new Label(""+i);
68 Label redLabel = new Label(""+i);
78 Label greenLabel = new Label(""+i);

Completed in 1170 milliseconds

12345678