Searched defs:labels (Results 1 - 11 of 11) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DUnionBranch.java80 public Vector labels = new Vector (); field in class:UnionBranch
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalworksDocumentFrame.java129 List<Component> labels = new ArrayList<Component>(); field in class:MetalworksDocumentFrame.LabeledPairLayout
136 labels.add(c);
146 for (Component comp : labels) {
153 Iterator<Component> labelIter = labels.listIterator();
174 for (Component comp : labels) {
180 Iterator<Component> labelIter = labels.listIterator();
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorModel.java34 private final String[] labels; field in class:ColorModel
36 ColorModel(String name, String... labels) { argument
38 this.labels = labels;
57 return this.labels.length;
73 return getText(component, this.labels[index]);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DAttribute.java114 * Returns the labels corresponding to this attribute.
116 * @return the labels corresponding to this attribute, or <tt>null</tt> if
117 * this attribute is not a code attribute that contains labels.
144 * @param labels the labels of the method's code, or <tt>null</tt> if the
155 final Label[] labels)
149 read( final ClassReader cr, final int off, final int len, final char[] buf, final int codeOff, final Label[] labels) argument
H A DMethodVisitor.java72 * must be called <i>before</i> the labels passed as arguments have been
74 * methods must be called <i>after</i> the labels passed as arguments have been
331 * @param labels beginnings of the handler blocks. <tt>labels[i]</tt> is
334 void visitTableSwitchInsn(int min, int max, Label dflt, Label[] labels); argument
341 * @param labels beginnings of the handler blocks. <tt>labels[i]</tt> is
344 void visitLookupSwitchInsn(Label dflt, int[] keys, Label[] labels); argument
367 * @throws IllegalArgumentException if one of the labels has already been
386 * @throws IllegalArgumentException if one of the labels ha
[all...]
H A DClassReader.java905 // 1st phase: finds the labels
907 Label[] labels = new Label[codeLength + 2];
908 readLabel(codeLength + 1, labels);
918 readLabel(w + readShort(v + 1), labels);
922 readLabel(w + readInt(v + 1), labels);
937 readLabel(w + readInt(v), labels);
941 readLabel(w + readInt(v), labels);
949 readLabel(w + readInt(v), labels);
953 readLabel(w + readInt(v + 4), labels);
982 Label start = readLabel(readUnsignedShort(v), labels);
1740 readFrameType( final Object[] frame, final int index, int v, final char[] buf, final Label[] labels) argument
1792 readLabel(int offset, Label[] labels) argument
1824 readAttribute( final Attribute[] attrs, final String type, final int off, final int len, final char[] buf, final int codeOff, final Label[] labels) argument
[all...]
H A DMethodWriter.java387 * A list of labels. This list is the list of basic blocks in the method,
392 private Label labels; field in class:MethodWriter
484 labels = new Label();
485 labels.status |= Label.PUSHED;
486 visitLabel(labels);
987 // successive labels, do not start a new basic block
1091 final Label[] labels)
1099 for (int i = 0; i < labels.length; ++i) {
1100 labels[i].put(this, code, source, true);
1103 visitSwitchInsn(dflt, labels);
1087 visitTableSwitchInsn( final int min, final int max, final Label dflt, final Label[] labels) argument
1106 visitLookupSwitchInsn( final Label dflt, final int[] keys, final Label[] labels) argument
1125 visitSwitchInsn(final Label dflt, final Label[] labels) argument
[all...]
/openjdk7/jdk/src/share/demo/applets/BarChart/
H A DBarChart.java64 private String labels[]; field in class:BarChart
77 labels = new String[columns];
137 labels[i] = "";
139 labels[i] = temp;
141 maxLabelWidth = Math.max(metrics.stringWidth(labels[i]), maxLabelWidth);
229 g.drawString(labels[i], cx, cy);
271 g.drawString(labels[i], cx, cy);
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsName.java41 * <p> The labels in a domain name correspond to JNDI atomic names.
44 * The sum of the lengths of all labels in a name, plus the number of
45 * non-root labels plus 1, must be less than 256. The textual
46 * representation of a domain name consists of the labels, escaped as
53 * Their labels contain only ASCII letters, digits, and hyphens, and
111 // The labels of this domain name, as a list of strings. Index 0
114 private ArrayList labels = new ArrayList(); field in class:DnsName
118 // number of non-root labels, plus 1. Must remain less than 256.
145 // Compute indexes into "labels", which has least-significant label
149 labels
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DStatement.java42 Identifier labels[] = null; field in class:Statement
85 if (labels == null) {
86 labels = new Identifier[1];
88 // this should almost never happen. Multiple labels on
90 Identifier newLabels[] = new Identifier[labels.length + 1];
91 System.arraycopy(labels, 0, newLabels, 1, labels.length);
92 labels = newLabels;
94 labels[0] = ((IdentifierExpression)e).id;
138 * Make sure the labels o
[all...]
/openjdk7/langtools/test/tools/javadoc/lib/
H A DTester.java292 List<Line> labels = new ArrayList<Line>(); field in class:Tester
296 while (!labels.isEmpty() && labels.get(0).off >= off)
297 labels.remove(0);
298 labels.add(0, new Line(off, s));
301 // Print queued labels with offsets less than "off".
303 while (!labels.isEmpty()) {
304 Line label = labels.remove(0);

Completed in 49 milliseconds