Searched defs:Label (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/asm/
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...]
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DLabel.java37 class Label { class
58 public Label() { method in class:Label
/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/share/classes/sun/font/
H A DDecoration.java65 public interface Label { interface in class:Decoration
117 public void drawTextAndDecorations(Label label,
125 public Rectangle2D getVisualBounds(Label label) {
130 public Rectangle2D getCharVisualBounds(Label label, int index) {
135 Shape getOutline(Label label,
253 private void drawTextAndEmbellishments(Label label,
290 public void drawTextAndDecorations(Label label,
342 public Rectangle2D getVisualBounds(Label label) {
369 Shape getOutline(Label label,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
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/hotspot/src/share/vm/asm/
H A Dassembler.hpp60 class Label;
64 * instructions can accept a Label as their target argument. A Label is
66 * MacroAssembler's 'bind' method, which in turn calls the Label's 'bind'
67 * method. A Label may be referenced by an instruction before it's bound
69 * in the Label object.
71 * If an instruction references a bound Label, the offset field(s) within
72 * the instruction are immediately filled in based on the Label's code
75 * (i.e., 'resolved') when the Label is bound.
82 * Instead of using a linked list of unresolved instructions, a Label ha
113 Label(const Label&) argument
168 Label() { function in class:VALUE_OBJ_CLASS_SPEC
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c2193 char *Label = GetData(it8, i, idField); local
2195 if (Label) {
2207 if (IsAvailableOnList(Table->HeaderList, Label, NULL, &p)) {
2215 snprintf(Buffer, 255, "%s %d %s", Label, nTable, Type );
2720 // Label, nTable, Type
2725 char Type[256], Label[256]; local
2739 if (sscanf(cLabelFld, "%255s %d %255s", Label, &nTable, Type) != 3)

Completed in 75 milliseconds