Searched refs:lbl (Results 1 - 25 of 33) sorted by relevance

12

/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/asm/
H A DLabel.java60 Label lbl = this;
66 lbl = ((Label)next).getDestination();
70 lbl = ((Label)next.value).getDestination();
83 lbl = (Label)inst.value;
85 lbl = new Label();
86 lbl.next = inst.next;
87 inst.next = lbl;
89 lbl = lbl.getDestination();
94 lbl
[all...]
H A DSwitchData.java64 public void add(int n, Label lbl) { argument
76 tab.put(Integer.valueOf(n), lbl);
H A DInstruction.java150 Label lbl = (Label)value;
151 value = lbl = lbl.getDestination();
152 if (lbl == next) {
199 if (lbl.next != null && env.opt()) {
200 switch (lbl.next.opc) {
204 opc = lbl.next.opc;
205 value = lbl.next.value;
279 Label lbl = sw.tab.get(k);
280 sw.tab.put(k, lbl
[all...]
H A DAssembler.java116 void optimize(Environment env, Label lbl) { argument
117 lbl.pc = REACHED;
119 for (Instruction inst = lbl.next ; inst != null ; inst = inst.next) {
260 void balance(Label lbl, int depth) { argument
261 for (Instruction inst = lbl ; inst != null ; inst = inst.next) {
273 lbl = (Label)inst;
275 if (lbl.depth != depth) {
277 depth + "/" + lbl.depth +
282 lbl.pc = REACHED;
283 lbl
765 flowFields(Environment env, Label lbl, MemberDefinition locals[]) argument
[all...]
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DContinueStatement.java41 Identifier lbl; field in class:ContinueStatement
46 public ContinueStatement(long where, Identifier lbl) { argument
48 this.lbl = lbl;
61 CheckContext destctx = (CheckContext)new CheckContext(ctx, this).getContinueContext(lbl);
68 env.error(where, "branch.to.uplevel", lbl);
76 if (lbl != null) {
77 env.error(where, "label.not.found", lbl);
100 CodeContext destctx = (CodeContext)ctx.getContinueContext(lbl);
111 if (lbl !
[all...]
H A DBreakStatement.java41 Identifier lbl; field in class:BreakStatement
46 public BreakStatement(long where, Identifier lbl) { argument
48 this.lbl = lbl;
57 CheckContext destctx = (CheckContext)new CheckContext(ctx, this).getBreakContext(lbl);
60 env.error(where, "branch.to.uplevel", lbl);
64 if (lbl != null) {
65 env.error(where, "label.not.found", lbl);
89 CodeContext destctx = (CodeContext)newctx.getBreakContext(lbl);
101 if (lbl !
[all...]
H A DAndExpression.java104 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
108 right.codeBranch(env, ctx, asm, lbl, true);
111 left.codeBranch(env, ctx, asm, lbl, false);
112 right.codeBranch(env, ctx, asm, lbl, false);
H A DOrExpression.java104 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
106 left.codeBranch(env, ctx, asm, lbl, true);
107 right.codeBranch(env, ctx, asm, lbl, true);
111 right.codeBranch(env, ctx, asm, lbl, false);
H A DEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
85 asm.add(where, whenTrue ? opc_if_icmpeq : opc_if_icmpne, lbl, whenTrue);
105 asm.add(where, whenTrue ? opc_ifnull : opc_ifnonnull, lbl, whenTrue);
108 asm.add(where, whenTrue ? opc_if_acmpeq : opc_if_acmpne, lbl, whenTrue);
115 asm.add(where, whenTrue ? opc_ifeq : opc_ifne, lbl, whenTrue);
H A DNotEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
85 asm.add(where, whenTrue ? opc_if_icmpne : opc_if_icmpeq, lbl, whenTrue);
105 asm.add(where, whenTrue ? opc_ifnonnull : opc_ifnull, lbl, whenTrue);
108 asm.add(where, whenTrue ? opc_if_acmpne : opc_if_acmpeq, lbl, whenTrue);
114 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
H A DGreaterOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmpge : opc_if_icmplt, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_ifge : opc_iflt, lbl, whenTrue);
H A DGreaterExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmpgt : opc_if_icmple, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_ifgt : opc_ifle, lbl, whenTrue);
H A DLessOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmple : opc_if_icmpgt, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_ifle : opc_ifgt, lbl, whenTrue);
H A DLessExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmplt : opc_if_icmpge, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_iflt : opc_ifge, lbl, whenTrue);
H A DBooleanExpression.java103 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
105 asm.add(where, opc_goto, lbl);
H A DSwitchStatement.java78 Expression lbl = ((CaseStatement)s).expr;
79 if (lbl != null) {
80 if (lbl instanceof IntegerExpression) {
82 (Integer)(((IntegerExpression)lbl).getValue());
84 if (tab.get(lbl) != null) {
87 tab.put(lbl, s);
120 if (!lbl.isConstant() ||
121 lbl.getType() != Type.tInt) {
H A DNotExpression.java132 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
133 right.codeBranch(env, ctx, asm, lbl, !whenTrue);
H A DContext.java678 Context getLabelContext(Identifier lbl) { argument
681 if (((Statement)(ctx.node)).hasLabel(lbl))
692 Context getBreakContext(Identifier lbl) { argument
693 if (lbl != null) {
694 return getLabelContext(lbl);
714 Context getContinueContext(Identifier lbl) { argument
715 if (lbl != null) {
716 return getLabelContext(lbl);
H A DInstanceOfExpression.java116 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
118 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
H A DStatement.java294 public boolean hasLabel (Identifier lbl) { argument
298 if (labels[i].equals(lbl)) {
/openjdk10/jdk/src/java.desktop/windows/classes/sun/awt/windows/
H A DWCheckboxPeer.java46 String lbl = ((Checkbox)target).getLabel();
48 if (lbl == null) {
49 lbl = "";
57 return new Dimension(fm.stringWidth(lbl) + marksize/2 + marksize,
/openjdk10/jdk/test/java/awt/image/multiresolution/
H A DMultiresolutionIconTest.java57 private JLabel lbl; field in class:MultiresolutionIconTest
118 lbl = new JLabel(icon);
119 p.add(lbl);
172 Point p = lbl.getLocationOnScreen();
173 int x = p.x + lbl.getWidth() / 2;
174 int y = p.y + lbl.getHeight() / 2;
175 int w = lbl.getWidth();
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/
H A DJSRInlinerAdapter.java187 public void visitJumpInsn(final int opcode, final Label lbl) { argument
188 super.visitJumpInsn(opcode, lbl);
472 log("Translating lbl #" + i + ':' + ilbl + " to " + remap);
518 LabelNode lbl = ((JumpInsnNode) insn).label;
519 BitSet sub = subroutineHeads.get(lbl);
521 LabelNode startlbl = newinst.gotoLabel(lbl);
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXChoicePeer.java568 String lbl = helper.getItem(helper.getSelectedIndex());
569 if (lbl != null && drawSelectedItem) {
573 g.drawString(lbl, 5, (height + fm.getMaxAscent()-fm.getMaxDescent())/2);
577 g.drawString(lbl, 5, (height + fm.getMaxAscent()-fm.getMaxDescent())/2);
579 g.drawString(lbl, 4, ((height + fm.getMaxAscent()-fm.getMaxDescent())/2)-1);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicLabelUI.java479 JLabel lbl = ((JLabel) e.getSource());
480 String text = lbl.getText();
481 BasicHTML.updateRenderer(lbl, text);

Completed in 189 milliseconds

12