Searched defs:label (Results 126 - 150 of 152) sorted by relevance

1234567

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java1374 public static final String convertString(String label) { argument
1375 char[] ch = label.toCharArray();
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParseException.java151 static ParseException branchLabel (Scanner scanner, String label) argument
153 return arg1 ("branchLabel", scanner, label);
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletViewer.java135 Label label; field in class:AppletViewer
194 add("South", label = new Label(amh.getMessage("label.hello")));
489 label.setText(status);
886 String label = ((MenuItem)evt.getSource()).getLabel();
888 if (amh.getMessage("menuitem.restart").equals(label)) {
893 if (amh.getMessage("menuitem.reload").equals(label)) {
898 if (amh.getMessage("menuitem.clone").equals(label)) {
903 if (amh.getMessage("menuitem.stop").equals(label)) {
908 if (amh.getMessage("menuitem.save").equals(label)) {
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmachnode.cpp58 // Return the label
59 Label* MachOper::label() const { ShouldNotReachHere(); return 0; } function in class:MachOper
109 return (opcode() == oper.opcode()) && (_label == oper.label());
399 // Adds the label for the case
511 void MachNullCheckNode::label_set(Label* label, uint block_num) { argument
514 void MachNullCheckNode::save_label( Label** label, uint* block_num ) { argument
H A Dmachnode.hpp130 // Return the label
131 virtual Label *label() const;
283 // Adds the label for the case
521 virtual void label_set(Label* label, uint block_num) = 0;
522 virtual void save_label(Label** label, uint* block_num) = 0;
547 virtual void label_set(Label* label, uint block_num);
548 virtual void save_label(Label** label, uint* block_num);
862 // Machine-independent version of label operand
874 labelOper(Label* label, uint block_num) : _label(label), _block_nu argument
880 virtual Label *label() const { assert(_label != NULL, "need Label"); return _label; } function in class:labelOper
[all...]
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java213 <T> void checkEqual(String label, T expect, T found) { argument
215 error("Unexpected value for " + label + ": " + found + "; expected: " + expect);
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java383 void check(boolean ok, String label, Info self) { argument
388 viewer.addEntry(sourcefile, label, encl, self);
390 error(label + self.toString() + " encl: " + encl.toString() + " in file: " + sourcefile + " " + self.tree);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJPopupMenu.java115 private String label = null; field in class:JPopupMenu
183 * @param label the string that a UI may use to display as a title
186 public JPopupMenu(String label) { argument
187 this.label = label;
515 * Returns the popup menu's label
517 * @return a string containing the popup menu's label
521 return label;
525 * Sets the popup menu's label. Different look and feels may choose
528 * @param label
535 setLabel(String label) argument
[all...]
H A DAbstractButton.java382 * the label. Setting to <code>null</code> will cause the button to
390 * @param m the space between the border and the label
395 * description: The space between the button's border and the label.
422 * the label.
425 * between the botton's border and the label
1559 * the button's label string, the first occurrence of it
2094 * Returns the label text.
2096 * @return a <code>String</code> containing the label
2105 * Sets the label text.
2107 * @param label
2114 setLabel(String label) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicOptionPaneUI.java374 JLabel label = new JLabel( (Icon)msg, SwingConstants.CENTER );
375 configureMessageLabel(label);
376 addMessageComponents(container, cons, label, maxll, true);
424 JLabel label;
425 label = new JLabel( s, JLabel.LEADING );
426 label.setName("OptionPane.label");
427 configureMessageLabel(label);
428 addMessageComponents(container, cons, label, maxll, true);
599 JLabel label
1136 configureMessageLabel(JLabel label) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKColorChooserPanel.java47 private JLabel label; field in class:GTKColorChooserPanel
169 label = new OpaqueLabel();
170 label.setName("GTKColorChooserPanel.colorWell");
171 label.setOpaque(true);
172 label.setMinimumSize(new Dimension(67, 32));
173 label.setPreferredSize(new Dimension(67, 32));
174 label.setMaximumSize(new Dimension(67, 32));
223 hBox.add(label);
254 JLabel label = new JLabel(UIManager.getString(key + "Text",
260 label
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java483 // creates and visits the label for the first basic block
886 public void visitJumpInsn(final int opcode, final Label label) { argument
892 // 'label' is the target of a jump instruction
893 label.getFirst().status |= Label.TARGET;
894 // adds 'label' as a successor of this basic block
895 addSuccessor(Edge.NORMAL, label);
902 if ((label.status & Label.SUBROUTINE) == 0) {
903 label.status |= Label.SUBROUTINE;
907 addSuccessor(stackSize + 1, label);
921 addSuccessor(stackSize, label);
977 visitLabel(final Label label) argument
2621 getNewOffset( final int[] indexes, final int[] sizes, final Label label) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_MenuItem.cpp51 jstring label; member in struct:SetLabelStruct
723 jstring label = sls->label; local
736 if (JNU_IsNull(env, label))
747 labelPtr = JNU_GetStringPlatformChars(env, label, 0);
765 JNU_ReleaseStringPlatformChars(env, label, labelPtr);
776 if (label != NULL)
778 env->DeleteGlobalRef(label);
795 jstring label = local
797 if (label
913 Java_sun_awt_windows_WMenuItemPeer__1setLabel(JNIEnv *env, jobject self, jstring label) argument
[all...]
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java1391 public void addImagePanel(ImageCanvas ic, String label) { argument
1393 add(new Label(label));
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.c411 /* Case label for a switch on hprof heap dump elements */
412 #define CASE_HEAP(name) case name: label = #name;
423 char *label; local
544 label = "UNKNOWN";
546 nrecords, npos, label);
565 nrecords, npos, label, id);
571 nrecords, npos, label, id, id2);
578 nrecords, npos, label, id, thread_serial_num, fr);
585 nrecords, npos, label, id, thread_serial_num, fr);
591 nrecords, npos, label, i
865 char *label; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyStore.java162 private String label = null; field in class:P11KeyStore.AliasInfo
180 public AliasInfo(String label) { argument
182 this.label = label;
186 public AliasInfo(String label, argument
191 this.label = label;
206 sb.append("\tlabel=[" + label + "]\n");
948 (session, ATTR_CLASS_SKEY, null, aliasInfo.label);
2234 CK_ATTRIBUTE[] label
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_util.c187 Widget label; local
220 label = XtVaCreateManagedWidget(warning,
228 XtVaSetValues(label,
787 /*a label in a menuitem is not supposed to be a FullOfSpaceString... */
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java210 * @param label Tag for the link.
211 * @param strong Whether the label should be strong or not?
214 String target, String label,
220 + getHyperLinkString(link, where, label, strong, "", "", target) + "');");
225 println(" " + getHyperLinkString(link, where, label, strong, "", "", target));
340 * @param label tag for the link
344 Content label) {
345 return getHyperLink(pathString(pd, "package-summary.html"), "", label, "", target);
958 * Print link for next file. If next is null, just print the label
973 * Get link for next file. If next is null, just print the label
213 printNoFramesTargetHyperLink(String link, String where, String target, String label, boolean strong) argument
343 getTargetPackageLink(PackageDoc pd, String target, Content label) argument
1098 getNavLinkMainTree(String label) argument
1639 printPackageLink(PackageDoc pkg, String label, boolean isStrong) argument
1651 printPackageLink(PackageDoc pkg, String label, boolean isStrong, String style) argument
1664 getPackageLinkString(PackageDoc pkg, String label, boolean isStrong) argument
1678 getPackageLinkString(PackageDoc pkg, String label, boolean isStrong, String style) argument
1710 getPackageLink(PackageDoc pkg, Content label) argument
1739 printSrcLink(ProgramElementDoc d, String label) argument
1761 addSrcLink(ProgramElementDoc doc, Content label, Content htmltree) argument
1824 getCrossClassLink(String qualifiedClassName, String refMemName, String label, boolean strong, String style, boolean code) argument
1973 getDocLink(int context, MemberDoc doc, String label) argument
1988 printDocLink(int context, ClassDoc classDoc, MemberDoc doc, String label, boolean strong) argument
2005 printDocLink(int context, ClassDoc classDoc, MemberDoc doc, String label, boolean strong, boolean isProperty) argument
2019 getDocLink(int context, MemberDoc doc, String label, boolean strong) argument
2036 getDocLink(int context, ClassDoc classDoc, MemberDoc doc, String label, boolean strong) argument
2054 getDocLink(int context, ClassDoc classDoc, MemberDoc doc, String label, boolean strong, boolean isProperty) argument
2082 getDocLink(int context, ClassDoc classDoc, MemberDoc doc, String label) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java979 // Check that label is not used in an enclosing statement
983 ((JCLabeledStatement) env1.tree).label == tree.label) {
984 log.error(tree.pos(), "label.already.in.use",
985 tree.label);
1018 boolean hasDefault = false; // Is there a default label?
1027 log.error(c.pat.pos(), "enum.label.must.be.unqualified.enum");
1029 log.error(c.pos(), "duplicate.case.label");
1038 log.error(c.pos(), "duplicate.case.label");
1045 log.error(c.pos(), "duplicate.default.label");
1321 findJumpTarget(DiagnosticPosition pos, int tag, Name label, Env<AttrContext> env) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java231 public JCLabeledStatement Labelled(Name label, JCStatement body) { argument
232 JCLabeledStatement tree = new JCLabeledStatement(label, body);
295 public JCBreak Break(Name label) { argument
296 JCBreak tree = new JCBreak(label, null);
301 public JCContinue Continue(Name label) { argument
302 JCContinue tree = new JCContinue(label, null);
H A DJCTree.java927 public Name label; field in class:JCTree.JCLabeledStatement
929 protected JCLabeledStatement(Name label, JCStatement body) { argument
930 this.label = label;
936 public Name getLabel() { return label; }
1185 public Name label; field in class:JCTree.JCBreak
1187 protected JCBreak(Name label, JCTree target) { argument
1188 this.label = label;
1195 public Name getLabel() { return label; }
1210 public Name label; field in class:JCTree.JCContinue
1212 JCContinue(Name label, JCTree target) argument
2131 Labelled(Name label, JCStatement body) argument
2146 Break(Name label) argument
2147 Continue(Name label) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java1013 protected String layoutCL(final JLabel label, final FontMetrics fontMetrics, final String text, final Icon icon, final Rectangle viewR, final Rectangle iconR, final Rectangle textR) { argument
1014 return SwingUtilities.layoutCompoundLabel(label, fontMetrics, text, icon, label.getVerticalAlignment(), label.getHorizontalAlignment(), label.getVerticalTextPosition(), label.getHorizontalTextPosition(), viewR, iconR, textR, label.getIconTextGap());
1375 final DefaultTableCellRenderer label = new AquaTableCellRenderer();
1376 label.setHorizontalAlignment(SwingConstants.LEFT);
1377 return label;
1654 createButton(final int which, String label) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c335 "STRING", // Identifies label, or other non-machine readable value.
1479 cmsBool SetDataFormat(cmsIT8* it8, int n, const char *label) argument
1492 t->DataFormat[n] = AllocString(it8, label);
2199 // This is the label, search for a table containing
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java1109 private Object getMemory(String label, Object array, Class arrayClass, argument
1124 + label);
1133 + label);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp438 // iterate all instructions of the block. skip the first because it is always a label
599 // iterate all instructions of the block. skip the first because it is always a label
600 assert(visitor.no_operands(instructions->at(0)), "first operation must always be a label");
1352 // skip the first instruction because it is always a label
1354 assert(visitor.no_operands(instructions->at(0)), "first operation must always be a label");
1736 assert(from_block->lir()->instructions_list()->at(0)->as_OpLabel() != NULL, "block does not start with a label");
1768 assert(instructions->at(0)->code() == lir_label, "block must start with label");
1772 // check if block is empty (only label and branch)
1988 // iterate all instructions of the block. skip the first because it is always a label
1989 assert(visitor.no_operands(ops->at(0)), "first operation must always be a label");
3119 print_intervals(const char* label) argument
3147 print_lir(int level, const char* label, bool hir_valid) argument
[all...]

Completed in 155 milliseconds

1234567