Searched refs:select (Results 26 - 50 of 157) sorted by relevance

1234567

/openjdk7/jdk/test/java/nio/channels/Selector/
H A DWakeupNow.java51 int n = sel.select(2000);
72 int n = sel.select(2000);
H A DCheckLocking.java27 * @summary check if setInterest blocks while in select
44 selector.select();
H A DKeySets.java152 sel.select();
155 sel.select();
163 sel.select();
173 sel.select();
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DIsConnectable.java48 int keysAdded = selector.select();
52 keysAdded = selector.select(5000);
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/awt/
H A DChoice.java91 * @see #select(int)
110 * by calling one of the <code>select</code> methods.
114 * @see #select(int)
115 * @see #select(java.lang.String)
235 select(0);
340 select(0);
342 select(selectedIndex-1);
406 * initially select an item in this component.
418 public synchronized void select(int pos) { method in class:Choice
426 peer.select(po
447 public synchronized void select(String str) { method in class:Choice
[all...]
/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/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 DWListPeer.java96 public native void select(int index); method in class:WListPeer
154 // select the item if necessary.
157 select(sel[i]);
162 // we should call makeVisible() after we call select()
199 l.select(index);
/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/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/test/java/awt/List/ActionAfterRemove/
H A DActionAfterRemove.java65 list.select(0);
/openjdk7/jdk/test/java/net/ProxySelector/
H A DSystemProxies.java53 List<Proxy> proxies = proxySel.select(new URI(uriStr));
H A DNullArguments.java26 * @summary ProxySelector.connectFailed and .select never throw IllegalArgumentException
39 p = ps.select(null);
/openjdk7/jdk/src/share/sample/nio/server/
H A DDispatcher1.java74 sel.select();
H A DDispatcherN.java75 sel.select();
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DStateTest.java69 sel.select(to);
92 sel.select(to);
/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DSOQLEngine.java35 * uses JavaScript engine for the "select" and "where" expression
49 select &lt;java script code to select&gt;
60 if (! first.equals("select") ) {
61 throw new SOQLException("query syntax error: no 'select' clause");
64 throw new SOQLException("query syntax error: no 'select' clause");
67 int selectStart = query.indexOf("select");
77 selectExpr = query.substring(selectStart + "select".length(), fromStart);
112 selectExpr = query.substring(selectStart + "select".length(), query.length());
154 // compile select expressio
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/oql/
H A DOQLEngine.java77 select &lt;java script code to select&gt;
88 if (! first.equals("select") ) {
89 // Query does not start with 'select' keyword.
100 throw new OQLException("query syntax error: no 'select' clause");
115 throw new OQLException("query syntax error: 'select' expression can not be empty");
200 // compile select expression and where condition
225 Object select = call("__select__", args);
226 if (visitor.visit(select)) return;
230 // simple "select <exp
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLInputElement.java216 public void select(); method in interface:HTMLInputElement
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
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/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

Completed in 63 milliseconds

1234567