Searched defs:select (Results 1 - 25 of 51) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/generics/
H A DRelaxedArrays.java41 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 DChoicePeer.java72 * @see Choice#select(int)
74 void select(int index); method in interface:ChoicePeer
H A DListPeer.java81 * @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
H A DTextComponentPeer.java93 * @see TextComponent#select(int, int)
95 void select(int selStart, int selEnd); method in interface:TextComponentPeer
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DFinishConnect.java51 boolean select,
73 if (!connected && select && !setBlocking) {
77 int keysAdded = selector.select(100);
50 test1(TestServers.DayTimeServer daytimeServer, boolean select, boolean setBlocking) argument
/openjdk7/jdk/src/share/classes/java/net/
H A DProxySelector.java41 * of URLConnection class should call the {@link #select select}
44 * #select select} method returns an iterator over a collection with
147 public abstract List<Proxy> select(URI uri); method in class:ProxySelector
153 * proxies returned by {@link #select(URI)}, using the address
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSelector.java98 * 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 DAltNode.java33 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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DSCDImpl.java54 public Iterator<XSComponent> select(Iterator<? extends XSComponent> contextNode) { method in class:SCDImpl
/openjdk7/jdk/test/java/net/ProxySelector/
H A DProxyTest.java62 public java.util.List<Proxy> select(URI uri) { method in class:ProxyTest.MyProxySelector
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DKeySelector.java115 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
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DSCD.java45 * 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...]
H A DXSComponent.java143 Collection<XSComponent> select(String scd, NamespaceContext nsContext); method in interface:XSComponent
H A DXSSchemaSet.java98 Collection<XSComponent> select(String scd, NamespaceContext nsContext); method in interface:XSSchemaSet
/openjdk7/jdk/test/javax/swing/JInternalFrame/
H A DTest6325652.java60 public void select() throws PropertyVetoException { method in class:Test6325652
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWChoicePeer.java42 * user input, but not in response to calls to select(). But JComboBox are
67 select(choice.getSelectedIndex());
84 getTarget().select(getDelegate().getSelectedIndex());
116 public void select(final int index) { method in class:LWChoicePeer
H A DLWTextComponentPeer.java78 select(start, end);
161 public final void select(final int selStart, final int selEnd) { method in class:LWTextComponentPeer
163 getTextComponent().select(selStart, selEnd);
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DX509KeySelector.java53 * specified in the {@link KeyInfo} passed to the {@link #select} method.
55 * <code>null</code> is returned. See the <code>select</code> method for more
129 public KeySelectorResult select(KeyInfo keyInfo, method in class:X509KeySelector
H A DKeySelectors.java62 public KeySelectorResult select(KeyInfo ki, method in class:KeySelectors.SecretKeySelector
95 public KeySelectorResult select(KeyInfo keyInfo, method in class:KeySelectors.RawX509KeySelector
146 public KeySelectorResult select(KeyInfo keyInfo, method in class:KeySelectors.KeyValueKeySelector
276 public KeySelectorResult select(KeyInfo keyInfo, method in class:KeySelectors.CollectionKeySelector
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSelectorImpl.java93 public int select(long timeout) method in class:SelectorImpl
101 public int select() throws IOException { method in class:SelectorImpl
102 return select(0);
/openjdk7/langtools/test/tools/javac/T6956462/
H A DT6956462.java115 public Tree visitMemberSelect(MemberSelectTree select, Void v) { argument
116 select.getExpression().accept(this, v);
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLTextAreaElement.java140 public void select(); method in interface:HTMLTextAreaElement
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DComponentImpl.java123 public Collection<XSComponent> select(String scd, NamespaceContext nsContext) { method in class:ComponentImpl
125 return SCD.create(scd,nsContext).select(this);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWChoicePeer.java54 public native void select(int index); method in class:WChoicePeer
97 select(opt.getSelectedIndex());
138 c.select(index);
H A DWTextComponentPeer.java49 public native void select(int selStart, int selEnd); method in class:WTextComponentPeer
64 select(tc.getSelectionStart(), tc.getSelectionEnd());
85 select(pos,pos);

Completed in 170 milliseconds

123