/openjdk7/langtools/test/tools/javac/ |
H A D | BadBreak.java | 39 label: 40 break label;
|
H A D | PrivateLocalConstructor.java | 35 private String label; 38 label = s; 42 return label;
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
H A D | JCase.java | 34 * label part of the case statement 36 private JExpression label; field in class:JCase 51 JCase(JExpression label) { argument 52 this(label, false); 57 * label should be null since default cases don't have a label. 59 JCase(JExpression label, boolean isDefaultCase) { argument 60 this.label = label; 64 public JExpression label() { method in class:JCase [all...] |
H A D | JBreak.java | 34 private final JLabel label; field in class:JBreak 40 * break label or null. 43 this.label = _label; 47 if( label==null ) 50 f.p("break").p(label.label).p(';').nl();
|
H A D | JContinue.java | 34 private final JLabel label; field in class:JContinue 40 * a valid label or null. 43 this.label = _label; 47 if( label==null ) 50 f.p("continue").p(label.label).p(';').nl();
|
H A D | JLabel.java | 36 final String label; field in class:JLabel 42 * break label or null. 45 this.label = _label; 49 f.p(label+':').nl();
|
/openjdk7/hotspot/src/share/vm/trace/ |
H A D | traceStream.hpp | 43 void print_val(const char* label, u1 val) { argument 44 _st.print("%s = "UINT32_FORMAT, label, val); 47 void print_val(const char* label, u2 val) { argument 48 _st.print("%s = "UINT32_FORMAT, label, val); 51 void print_val(const char* label, s2 val) { argument 52 _st.print("%s = "INT32_FORMAT, label, val); 55 void print_val(const char* label, u4 val) { argument 56 _st.print("%s = "UINT32_FORMAT, label, val); 59 void print_val(const char* label, s4 val) { argument 60 _st.print("%s = "INT32_FORMAT, label, va 63 print_val(const char* label, u8 val) argument 67 print_val(const char* label, s8 val) argument 71 print_val(const char* label, bool val) argument 75 print_val(const char* label, float val) argument 79 print_val(const char* label, double val) argument 87 print_val(const char* label, const klassOop& val) argument 103 print_val(const char* label, const methodOop& val) argument 111 print_val(const char* label, const char* val) argument [all...] |
/openjdk7/langtools/test/tools/javac/diags/examples/ |
H A D | NotLoopLabel.java | 24 // key: compiler.err.not.loop.label 28 label: { 32 continue label;
|
H A D | LabelInUse.java | 24 // key: compiler.err.label.already.in.use 28 label: 30 label:
|
/openjdk7/jdk/test/java/beans/XMLEncoder/ |
H A D | Test6570354.java | 40 JLabel label = new JLabel(""); 41 label.removePropertyChangeListener((PropertyChangeListener) label.getUI()); 42 return label;
|
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/ |
H A D | XNodeInfo.java | 31 * <p>It encapsulates the node's info, i.e. the type of the node, the label to 46 public XNodeInfo(Type type, Object data, String label, String tooltip) { argument 49 this.label = label; 62 return label; 70 return label; 75 private String label; field in class:XNodeInfo
|
/openjdk7/jdk/src/share/classes/sun/tools/asm/ |
H A D | CatchData.java | 39 Label label; field in class:CatchData 46 this.label = new Label(); 50 * Get the label 53 return label;
|
/openjdk7/jdk/src/share/classes/javax/swing/text/html/ |
H A D | Option.java | 62 * Sets the label to be used for the option. 64 public void setLabel(String label) { argument 65 this.label = label; 69 * Fetch the label associated with the option. 72 return label; 83 * String representation is the label. 86 return label; 106 * value has not been specified, the label will be 112 value = label; 118 private String label; field in class:Option [all...] |
/openjdk7/jdk/test/java/awt/font/TextLayout/ |
H A D | TestSinhalaChar.java | 48 final JLabel label = new JLabel("(empty)"); 49 label.setSize(400, 100); 50 label.setBorder(new LineBorder(Color.black)); 51 label.setFont(new Font("Lucida Bright", Font.PLAIN, 12)); 53 label.setText(Character.toString('\u0DDD')); 58 label.setText(Character.toString('\u0DDD')); 63 panel.add(label);
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/ |
H A D | SynthLabelUI.java | 119 JLabel label = (JLabel)c; 120 String text = label.getText(); 124 Insets i = label.getInsets(); 134 SynthContext context = getContext(label); 138 context, fm, label.getText(), label.getIcon(), 139 label.getHorizontalAlignment(), label.getVerticalAlignment(), 140 label.getHorizontalTextPosition(), label [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/ |
H A D | LabeledComponent.java | 36 JLabel label; field in class:LabeledComponent 47 this.label = new JLabel(text, JLabel.RIGHT); 50 label.setLabelFor(comp); 52 label.setDisplayedMnemonic(mnemonic); 55 add(label, BorderLayout.WEST); 71 label.setText(str); 83 lc.label.setPreferredSize(null); 84 // int w = lc.label.getMinimumSize().width; 85 int w = lc.label.getPreferredSize().width; 95 JLabel label [all...] |
/openjdk7/jdk/test/java/awt/Frame/ResizeAfterSetFont/ |
H A D | ResizeAfterSetFont.java | 51 Label label = new Label("Test Label"); 52 label.setBackground(Color.white); 53 label.setForeground(Color.RED); 54 label.setFont(new Font("Dialog", Font.PLAIN, 12)); 56 panel.add(label); 64 label.setFont(new Font("Dialog", Font.PLAIN, 24));
|
/openjdk7/jdk/src/share/classes/sun/security/internal/spec/ |
H A D | TlsPrfParameterSpec.java | 48 private final String label; field in class:TlsPrfParameterSpec 59 * @param label the label to use in the calculation 69 * @throws NullPointerException if label or seed is null 72 public TlsPrfParameterSpec(SecretKey secret, String label, argument 75 if ((label == null) || (seed == null)) { 76 throw new NullPointerException("label and seed must not be null"); 82 this.label = label; 102 * Returns the label t [all...] |
/openjdk7/jdk/test/javax/swing/border/ |
H A D | Test4129681.java | 41 private JLabel label; field in class:Test4129681 48 this.label = new JLabel("message"); 49 this.label.setBorder(BorderFactory.createTitledBorder("label")); 50 this.label.setEnabled(!check.isSelected()); 53 add(BorderLayout.CENTER, this.label); 57 this.label.setEnabled(ItemEvent.DESELECTED == event.getStateChange());
|
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/ |
H A D | ObjectTypeNode.java | 41 String debugValue(String label) { argument 42 return "(" + label + "==null?\"NULL\":\"ref=\"+" + label + ".ref())";
|
H A D | ReferenceTypeNode.java | 41 String debugValue(String label) { argument 42 return "(" + label + "==null?\"NULL\":\"ref=\"+" + label + ".ref())";
|
/openjdk7/jdk/src/share/classes/java/awt/peer/ |
H A D | ButtonPeer.java | 42 * Sets the label that is displayed on the button. Can be {@code null} 43 * when the button should not display a label. 45 * @param label the label string to set 49 void setLabel(String label); argument
|
H A D | LabelPeer.java | 41 * Sets the text to be displayed on the label. 43 * @param label the text to be displayed on the label 47 void setText(String label); argument 50 * Sets the alignment of the label text. 52 * @param alignment the alignment of the label text
|
H A D | MenuItemPeer.java | 41 * Sets the label to be displayed in this menu item. 43 * @param label the label to be displayed 45 void setLabel(String label); argument
|
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/ |
H A D | NameNode.java | 34 * has a label, which is its name relative to its parent (so the 35 * node at Sun.COM has label "Sun"). Each node has a hashtable of 53 private String label; // name of this node relative to its field in class:NameNode 59 NameNode(String label) { argument 60 this.label = label; 68 protected NameNode newNameNode(String label) { argument 69 return new NameNode(label); 77 return label; 105 * Returns the child node given the hash key (the down-cased label) [all...] |