Searched refs:select (Results 101 - 125 of 157) sorted by relevance

1234567

/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DCommUp.java113 debug("select " + z);
114 int keysAdded = selector.select(TIMEOUT);
244 debug("select");
245 int keysAdded = selector.select(TIMEOUT);
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DSelectorTest.java171 int keysAdded = acceptSelector.select(100);
342 int numKeys = selector.select(100);
H A DLotsOfCancels.java35 * Reproduces O(N^2) behavior of JDK6/7 select() call. This happens when
39 * In this case, select() will first go through the list of cancelled keys
65 // the final select should run in less than 1000ms.
141 // Now get the timing of select() call.
142 log("Running the final select call");
261 selector.select();
263 log("Exited clientSelector.select(), loop #"
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSocketAdaptor.java116 int ns = sel.select(to);
221 int ns = sel.select(to);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSpinnerUI.java655 select(spinner);
669 private void select(JSpinner spinner) { method in class:BasicSpinnerUI.ArrowButtonHandler
687 if (!select(ftf, iterator, field) &&
689 select(ftf, iterator, DateFormat.Field.HOUR1);
702 private boolean select(JFormattedTextField ftf, method in class:BasicSpinnerUI.ArrowButtonHandler
717 ftf.select(start, end);
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java1880 choice.select(PRIN_TYPE);
1884 choice.select(inputPrin.CLASS);
1994 choice.select(inputPerm.CLASS);
2336 void displayUserSave(int select) { argument
2356 (new UserSaveYesButtonListener(this, tool, tw, select));
2363 (new UserSaveNoButtonListener(this, tool, tw, select));
2383 userSaveContinue(tool, tw, this, select);
2395 ToolDialog us, int select) {
2398 switch(select) {
3276 prin.select(inputPri
2394 userSaveContinue(PolicyTool tool, ToolWindow tw, ToolDialog us, int select) argument
3507 private int select; field in class:UserSaveYesButtonListener
3509 UserSaveYesButtonListener(ToolDialog us, PolicyTool tool, ToolWindow tw, int select) argument
3561 private int select; field in class:UserSaveNoButtonListener
3563 UserSaveNoButtonListener(ToolDialog us, PolicyTool tool, ToolWindow tw, int select) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCInputMethod.java491 /* Called from JNI to select the previously typed glyph during press and hold */
501 ((JTextComponent) fAwtFocussedComponent).select(offset - 1, offset);
506 ((TextComponent) fAwtFocussedComponent).select(offset - 1, offset);
524 ((JTextComponent) fAwtFocussedComponent).select(offset, offset + 1);
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpServer.java205 selector.select (1000);
684 int n = selector.select ();
767 selector.select ();
/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpServer.java176 selector.select (1000);
492 int n = selector.select ();
562 selector.select ();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLEditorKit.java1764 pane.select(startOffset, startOffset);
1767 pane.select(startOffset + 1, startOffset + 1);
1771 pane.select(1, 1);
2267 BeginAction(String nm, boolean select) { argument
2269 this.select = select;
2278 if (select) {
2286 private boolean select; field in class:HTMLEditorKit.BeginAction
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DSchemaImpl.java294 public Collection<XSComponent> select(String scd, NamespaceContext nsContext) { method in class:SchemaImpl
296 return SCD.create(scd,nsContext).select(this);
H A DSchemaSetImpl.java231 public Collection<XSComponent> select(String scd, NamespaceContext nsContext) { method in class:SchemaSetImpl
233 return SCD.create(scd,nsContext).select(this);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWListPeer.java105 public void select(final int index) { method in class:LWListPeer
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/
H A DColorEditor.java142 choser.select(active);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DSCDBasedBindingSet.java135 Collection<XSComponent> childNodes = scd.select(contextNode);
/openjdk7/jdk/src/solaris/native/java/net/
H A Dlinux_close.c320 select(s, readfds, writefds, exceptfds, timeout) );
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DDatagramChannelImpl.c85 if (select(/*ignored*/fd+1, &tbl, 0, 0, &t) <= 0) {
/openjdk7/jdk/test/com/sun/nio/sctp/SctpServerChannel/
H A DNonBlockingAccept.java144 int keysAdded = acceptSelector.select(SEL_TIMEOUT);
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DMulticastSendReceiveTests.java94 sel.select(5*1000);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeInfo.java133 JCFieldAccess select = (JCFieldAccess)assign.lhs;
134 if (select.sym != null &&
135 (select.sym.flags() & SYNTHETIC) != 0) {
136 Name selected = name(select.selected);
/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
/openjdk7/jdk/src/share/classes/sun/net/spi/
H A DDefaultProxySelector.java133 * select() method. Where all the hard work is done.
139 public java.util.List<Proxy> select(URI uri) { method in class:DefaultProxySelector
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java393 * Displays a JFileChooser that allows the user to select the destination
1028 SunPageSelection select = SunPageSelection.ALL;
1035 select = SunPageSelection.SELECTION;
1040 select = SunPageSelection.RANGE;
1044 asCurrent.add(select);
1107 SunPageSelection select = SunPageSelection.ALL;
1114 select = SunPageSelection.RANGE;
1126 select = (SunPageSelection)asCurrent.get(
1130 if (select == SunPageSelection.ALL) {
1132 } else if (select
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXMLSignature.java382 ksr = signContext.getKeySelector().select
530 ksResult = validateContext.getKeySelector().select
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTextArea.java213 select(0, 0);

Completed in 109 milliseconds

1234567