Searched refs:select (Results 126 - 150 of 157) sorted by relevance

1234567

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DControlFlowScene.java174 public void select(Widget widget, Point point, boolean change) { method in class:ControlFlowScene
/openjdk7/jdk/src/windows/native/java/net/
H A DDualStackPlainSocketImpl.c50 // implement read timeout with select.
158 rv = select(fd+1, 0, &wr, &ex, &t);
H A Dnet_util_md.c546 ret = select (fd + 1, &tbl, 0, 0, &t);
576 ret = select (0, &tbl, 0, 0, tP);
961 * Wrapper for select/poll with timeout on a single file descriptor.
1001 read_rv = select(fd+1, &rd, &wr, &ex, &t);
H A DDualStackPlainDatagramSocketImpl.c54 if (select(/*ignored*/fd+1, &tbl, 0, 0, &t) <= 0) {
H A DTwoStacksPlainSocketImpl.c294 connect_res = select(fd+1, 0, &wr, &ex, &t);
634 res = select (fd, &rfds, NULL, NULL, tP);
652 "select failed");
883 * select() -- see SocketInputStream.socketRead.
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DDatagramSocketAdaptor.java195 int ns = sel.select(to);
/openjdk7/jdk/src/share/classes/sun/print/
H A DPrintJob2D.java407 DefaultSelectionType select =
409 if (select == DefaultSelectionType.RANGE) {
411 } else if (select == DefaultSelectionType.SELECTION) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTextAreaPeer.java150 select(start, end);
366 public void select(int s, int e) { method in class:XTextAreaPeer
367 jtext.select(s,e);
678 // In order to de-select the selection
H A DXFileDialogPeer.java85 // This variable holds the current text of the file which user select through the navigation
376 directoryList.select(0);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DSelectorImpl.java273 n = selector.select(timeout);
276 dprint(".run: selector.select: " + e);
288 dprint(".run: selector.select() returned: " + n);
317 // IMPORTANT: ignore all errors so the select thread keeps running.
414 // cleaned up on the next Selector.select() call.
/openjdk7/jdk/src/share/demo/applets/DitherTest/
H A DDitherTest.java365 choice.select(type.ordinal());
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DElementTreePanel.java305 // If a path was found, select it (them).
339 getEditor().select(selElement.getStartOffset(),
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/ftp/
H A DFtpURLConnection.java226 Iterator<Proxy> it = sel.select(uri).iterator();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DMethodGen.java891 // explore all of the select's targets. the default target is handled below.
892 Select select = (Select) branch;
893 InstructionHandle[] targets = select.getTargets();
/openjdk7/jdk/src/share/classes/java/net/
H A DSocksSocketImpl.java384 iProxy = sel.select(uri).iterator();
700 iProxy = sel.select(uri).iterator();
/openjdk7/hotspot/src/share/vm/opto/
H A Dlcm.cpp398 //------------------------------select-----------------------------------------
408 Node *Block::select(PhaseCFG *cfg, Node_List &worklist, GrowableArray<int> &ready_cnt, VectorSet &next_call, uint sched_slot) { function in class:Block
764 // of the phi to be scheduled first. The select() method breaks
812 Node* n = select(cfg, worklist, ready_cnt, next_call, phi_cnt);
817 tty->print("# select %d: %s", n->_idx, n->Name());
H A Dblock.hpp290 Node *select(PhaseCFG *cfg, Node_List &worklist, GrowableArray<int> &ready_cnt, VectorSet &next_call, uint sched_slot);
424 // and then select the cheapest block between the latest and earliest
/openjdk7/jdk/src/share/demo/applets/SpreadSheet/
H A DSpreadSheet.java353 current.select();
713 public void select() { method in class:Cell
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DInternationalFormatter.java846 getFormattedTextField().select(iterator.getIndex(),
H A DJTextComponent.java587 * description: the caret used to select/navigate
1838 /* Route through select method to enforce consistent policy
1841 select(selectionStart, getSelectionEnd());
1871 /* Route through select method to enforce consistent policy
1874 select(getSelectionStart(), selectionEnd);
1905 public void select(int selectionStart, int selectionEnd) { method in class:JTextComponent
3274 JTextComponent.this.select(startIndex, endIndex);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJSpinner.java46 * A single line input field that lets the user select a
112 * description: A single line input field that lets the user select a
1346 getFormattedTextField().select(offset +
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintControl.cpp586 jobject select = NULL; local
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.java341 selector.select(1000);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MToolkit.c133 #include <sys/select.h>
288 * Gets the best timeout for the next call to poll() or select().
1088 * select() by writing to this pipe.
1962 ** WE USE EITHER select() OR poll(), DEPENDING ON THE USE_SELECT **
1973 * Performs select() on both the X pipe and our AWT utility pipe.
2010 result = select(nfds, &rdset, 0, 0, &sel_time);
2015 /* select() timed out -- update timeout value */
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DDiagramScene.java208 public void select(Widget w, Point point, boolean change) {

Completed in 124 milliseconds

1234567