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

1234567891011>>

/openjdk10/jaxws/src/java.xml.ws/share/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}.
/openjdk10/jdk/src/jdk.rmic/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();
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/
H A DTableSwitchGenerator.java61 import jdk.internal.org.objectweb.asm.Label;
80 void generateCase(int key, Label end);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/
H A DLabels.java29 import jdk.nashorn.internal.codegen.Label;
42 public List<Label> getLabels();
H A DBreakableNode.java28 import jdk.nashorn.internal.codegen.Label;
56 public Label getBreakLabel();
H A DLoopNode.java31 import jdk.nashorn.internal.codegen.Label;
40 protected final Label continueLabel;
62 super(lineNumber, token, finish, new Label("while_break"));
63 this.continueLabel = new Label("while_continue");
81 this.continueLabel = new Label(loopNode.continueLabel);
127 public Label getContinueLabel() {
132 public List<Label> getLabels() {
/openjdk10/jdk/test/java/awt/Component/Headless/
H A DHeadlessLabel.java28 * @summary Check that Label constructors do not throw unexpected
35 Label l;
39 l = new Label();
48 l = new Label("Label me blue");
57 l = new Label("Label me blue", 200);
/openjdk10/jdk/src/jdk.rmic/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();
42 Hashtable<Integer, Label> tab = new Hashtable<>();
50 public Label get(int n) {
57 public Label get(Integer n) {
64 public void add(int n, Label lbl) {
82 public Label getDefaultLabel() {
126 SwitchDataEnumeration(Hashtable<Integer, Label> tab) {
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DLabelOperator.java27 import java.awt.Label;
56 public LabelOperator(Label b) {
68 this((Label) cont.
95 this((Label) waitComponent(cont,
124 this((Label) waitComponent(cont,
142 * Searches Label in container.
147 * @return Label instance or null if component was not found.
149 public static Label findLabel(Container cont, ComponentChooser chooser, int index) {
150 return (Label) findComponent(cont, new LabelFinder(chooser), index);
154 * Searches Label i
[all...]
/openjdk10/jdk/src/java.desktop/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) {
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DContext.java107 * non null associated Label object).
109 Label[] labels;
130 Label[] start;
136 Label[] end;
H A DEdge.java62 * An edge in the control flow graph of a method body. See {@link Label Label}.
97 Label successor;
101 * See {@link Label#successors successors}.
/openjdk10/jdk/src/java.desktop/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
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DUnbalancedMonitorsTest.java34 import org.objectweb.asm.Label;
171 Label l0 = new Label();
172 Label l1 = new Label();
173 Label l2 = new Label();
175 Label l3 = new Label();
177 Label l
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/util/
H A DASMifiable.java63 import jdk.internal.org.objectweb.asm.Label;
84 void asmify(StringBuffer buf, String varName, Map<Label, String> labelNames);
H A DTextifiable.java63 import jdk.internal.org.objectweb.asm.Label;
84 void textify(StringBuffer buf, Map<Label, String> labelNames);
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/lwawt/
H A DLWLabelPeer.java29 import java.awt.Label;
39 final class LWLabelPeer extends LWComponentPeer<Label, JLabel>
42 LWLabelPeer(final Label target, final PlatformComponent platformComponent) {
73 * Converts {@code Label} alignment constant to the {@code JLabel} constant.
74 * If wrong Label alignment provided returns default alignment.
76 * @param alignment {@code Label} constant.
82 case Label.CENTER:
84 case Label.RIGHT:
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/
H A DLabelNode.java63 import jdk.internal.org.objectweb.asm.Label;
67 * An {@link AbstractInsnNode} that encapsulates a {@link Label}.
71 private Label label;
77 public LabelNode(final Label label) {
87 public Label getLabel() {
89 label = new Label();
/openjdk10/jdk/src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/internal/
H A DLabelTranslator.java52 * for the Label class. Translator.getAccessible() will automatically
54 * translator for Label.
60 return ((Label) source).getText();
67 ((Label) source).setText(s);
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dc1_MacroAssembler_ppc.hpp38 Label& slow_case // continuation point if fast allocation fails
46 void lock_object (Register Rmark, Register Roop, Register Rbox, Register Rscratch, Label& slow_case);
47 void unlock_object(Register Rmark, Register Roop, Register Rbox, Label& slow_case);
69 Label& slow_case // continuation point if fast allocation fails
86 Label& slow_case // continuation point if fast allocation fails
89 void null_check(Register r, Label *Lnull = NULL);

Completed in 134 milliseconds

1234567891011>>