/openjdk7/langtools/test/tools/javac/generics/ |
H A D | RelaxedArrays.java | 41 static <T> T select(T... tl) { method in class:RelaxedArrays 47 if (select("A", "B", "C") != "C") throw new Error();
|
/openjdk7/jdk/src/share/classes/java/awt/peer/ |
H A D | ChoicePeer.java | 72 * @see Choice#select(int) 74 void select(int index); method in interface:ChoicePeer
|
H A D | TextComponentPeer.java | 93 * @see TextComponent#select(int, int) 95 void select(int selStart, int selEnd); method in interface:TextComponentPeer
|
H A D | ListPeer.java | 81 * @param index the index of the item to select 83 * @see List#select(int) 85 void select(int index); method in interface:ListPeer 90 * @param index the index of the item to de-select
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/ |
H A D | SCD.java | 45 * SCD for schema is what XPath is for XML. SCD allows you to select a schema component(s) 65 * If you want to evaluate SCD just once, use {@link XSComponent#select} methods. 97 public final Collection<XSComponent> select(XSComponent contextNode) { method in class:SCD 98 return new DeferedCollection<XSComponent>(select(Iterators.singleton(contextNode))); 112 public final Collection<XSComponent> select(XSSchemaSet contextNode) { method in class:SCD 113 return select(contextNode.getSchemas()); 125 Iterator<XSComponent> r = select(Iterators.singleton(contextNode)); 139 Iterator<XSComponent> r = select(contextNode.iterateSchema()); 155 public abstract Iterator<XSComponent> select(Iterator<? extends XSComponent> contextNodes); method in class:SCD 168 public final Collection<XSComponent> select(Collectio method in class:SCD [all...] |
/openjdk7/jdk/test/java/nio/channels/Selector/ |
H A D | Close.java | 42 sa.select(1); 44 sa.select(1); 45 sb.select(1);
|
H A D | SelectWrite.java | 48 sel.select(); 50 if (sel.select() == 0) {
|
H A D | WakeupEmpty.java | 50 if (sel.select() != 0)
|
H A D | KeysReady.java | 48 int keysAdded = selector.select(); 50 keysAdded = selector.select(1000);
|
H A D | WakeupAfterClose.java | 40 sel.select();
|
H A D | WakeupSpeed.java | 26 * @summary Tests wether wakeup makes the next select() call return immediately 42 selector.select(waitTime);
|
H A D | SelectAndClose.java | 26 * @summary Check blocking of select and close 44 selector.select(); 52 // Wait for above thread to get to select() before we call close. 55 // Try to close. This should wakeup select. 67 // Wait for select() to be awakened, which should be done by close.
|
H A D | ConnectWrite.java | 56 int keysAdded = selector.select(1000); 70 int keysAdded = selector.select(1000);
|
/openjdk7/jdk/src/share/classes/sun/awt/ |
H A D | FocusingTextField.java | 42 /** If true, select the contents of the field when it gets the focus. */ 56 * @param willSelect if true, will select all contents of field when 81 * We got the focus. If willSelect is true, select everything. 85 select(0, getText().length()); 95 select(0, 0);
|
/openjdk7/jdk/src/share/classes/java/nio/channels/ |
H A D | Selector.java | 98 * cancelled-key sets. Selection is performed by the {@link #select()}, {@link 99 * #select(long)}, and {@link #selectNow()} methods, and involves three steps: 164 * <p> A thread blocked in one of the {@link #select()} or {@link 165 * #select(long)} methods may be interrupted by some other thread in one of 329 public abstract int select(long timeout) method in class:Selector 350 public abstract int select() throws IOException; method in class:Selector 357 * {@link #select()} or {@link #select(long)} methods then that invocation 362 * non-zero. Subsequent invocations of the {@link #select()} or {@link 363 * #select(lon [all...] |
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/ |
H A D | AltNode.java | 33 SelectNode select = null; field in class:AltNode 42 select = (SelectNode)parent; 62 return " extends " + select.commonBaseClass(); 67 writer.print("static final " + select.typeNode.javaType()); 73 writer.println(select.typeNode.javaParam() + "() {"); 97 writer.print("static " + select.name() + " create("); 101 writer.print("return new " + select.name() + "(");
|
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | DefaultEditorKit.java | 720 public static final String selectWordAction = "select-word"; 726 public static final String selectLineAction = "select-line"; 732 public static final String selectParagraphAction = "select-paragraph"; 738 public static final String selectAllAction = "select-all"; 1402 * Scrolls up/down vertically. The select version of this action extends 1412 public VerticalPageAction(String nm, int direction, boolean select) { argument 1414 this.select = select; 1479 if (select) { 1556 private boolean select; field in class:DefaultEditorKit.VerticalPageAction 1571 PageAction(String nm, boolean left, boolean select) argument 1618 private boolean select; field in class:DefaultEditorKit.PageAction 1652 NextVisualPositionAction(String nm, boolean select, int direction) argument 1721 private boolean select; field in class:DefaultEditorKit.NextVisualPositionAction 1739 BeginWordAction(String nm, boolean select) argument 1762 private boolean select; field in class:DefaultEditorKit.BeginWordAction 1779 EndWordAction(String nm, boolean select) argument 1802 private boolean select; field in class:DefaultEditorKit.EndWordAction 1819 PreviousWordAction(String nm, boolean select) argument 1861 private boolean select; field in class:DefaultEditorKit.PreviousWordAction 1878 NextWordAction(String nm, boolean select) argument 1926 private boolean select; field in class:DefaultEditorKit.NextWordAction 1943 BeginLineAction(String nm, boolean select) argument 1966 private boolean select; field in class:DefaultEditorKit.BeginLineAction 1983 EndLineAction(String nm, boolean select) argument 2006 private boolean select; field in class:DefaultEditorKit.EndLineAction 2023 BeginParagraphAction(String nm, boolean select) argument 2043 private boolean select; field in class:DefaultEditorKit.BeginParagraphAction 2060 EndParagraphAction(String nm, boolean select) argument 2081 private boolean select; field in class:DefaultEditorKit.EndParagraphAction 2092 BeginAction(String nm, boolean select) argument 2109 private boolean select; field in class:DefaultEditorKit.BeginAction 2120 EndAction(String nm, boolean select) argument 2139 private boolean select; field in class:DefaultEditorKit.EndAction [all...] |
/openjdk7/jdk/test/java/net/ProxySelector/ |
H A D | B6737819.java | 54 l = sel.select(new URI(s)); 63 l = sel.select(new URI(s));
|
H A D | B6563259.java | 39 java.util.List<Proxy> l = sel.select(new URI("http://HOST1.sun.com/"));
|
H A D | MultiThreadedSystemProxies.java | 49 ps.select(uri);
|
/openjdk7/jdk/src/windows/classes/sun/awt/windows/ |
H A D | WTextComponentPeer.java | 49 public native void select(int selStart, int selEnd); method in class:WTextComponentPeer 64 select(tc.getSelectionStart(), tc.getSelectionEnd()); 85 select(pos,pos);
|
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/ |
H A D | SelectWhenRefused.java | 26 * @summary Test that Selector does not select an unconnected DatagramChannel when 54 int n = sel.select(2000); 67 n = sel.select(2000); 83 n = sel.select(2000);
|
/openjdk7/jaxp/src/org/w3c/dom/html/ |
H A D | HTMLTextAreaElement.java | 140 public void select(); method in interface:HTMLTextAreaElement
|
/openjdk7/jdk/test/java/awt/List/SingleModeDeselect/ |
H A D | SingleModeDeselect.java | 50 list.select(0);
|
/openjdk7/jdk/src/share/classes/javax/xml/crypto/ |
H A D | KeySelector.java | 115 public abstract KeySelectorResult select(KeyInfo keyInfo, Purpose purpose, method in class:KeySelector 141 public KeySelectorResult select(KeyInfo keyInfo, Purpose purpose, method in class:KeySelector.SingletonKeySelector
|