Searched defs:select (Results 26 - 50 of 51) sorted by relevance

123

/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/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DVariableBase.java60 protected String select; // Textual repr. of variable expr. field in class:VariableBase
149 * Returns the expression from this variable's select attribute (if any)
170 System.out.println("select " + _select.toString());
235 select = getAttribute("select");
236 if (select.length() > 0) {
237 _select = getParser().parseExpression(this, "select", null);
239 reportError(this, parser, ErrorMsg.REQUIRED_ATTR_ERR, "select");
250 * a 'select' attribute, or in the variable elements body
254 // Compile expression is 'select' attribut
[all...]
/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...]
H A DTextComponent.java260 * @see java.awt.TextComponent#select
371 /* Route through select method to enforce consistent policy
374 select(selectionStart, getSelectionEnd());
407 /* Route through select method to enforce consistent policy
410 select(getSelectionStart(), selectionEnd);
445 public synchronized void select(int selectionStart, int selectionEnd) { method in class:TextComponent
465 peer.select(selectionStart, selectionEnd);
471 * @see java.awt.TextComponent#select
479 peer.select(selectionStart, selectionEnd);
513 select(positio
[all...]
H A DList.java135 * select more than one item in a list at one time.
138 * the user can only select one item on the list at any
221 * <code>true</code>, then the user can select multiple items from
315 * @see #select
472 * @see #select
486 * @see #select
504 * @see #select
518 * @see #select
550 * initially select an item in this component.
555 * @param index the position of the item to select
560 public void select(int index) { method in class:List
[all...]
/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/macosx/classes/sun/lwawt/
H A DLWListPeer.java105 public void select(final int index) { method in class:LWListPeer
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLInputElement.java216 public void select(); method in interface:HTMLInputElement
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
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/solaris/classes/sun/awt/X11/
H A DXMSelection.java118 void select(long extra_mask) { method in class:XMSelection
243 select(extraMask);
H A DListHelper.java38 // FIXME: implement multi-select
145 // FIXME: need to clean up select list, too?
152 // FIXME: need to clean up select list, too?
172 public void select(int index) { method in class:ListHelper
177 assert false : "Implement ListHelper.select() for multiselect";
310 // FIXME: multi-select needs separate focused index
325 select(newIdx);
330 select(newIdx);
334 // FIXME: for multi-select, move the focused item, not the selected item
344 select(firstDisplayedInde
[all...]
H A DXChoicePeer.java157 helper.select(target.getSelectedIndex());
231 ((Choice)target).select(newIdx);
246 ((Choice)target).select(newIdx);
261 ((Choice)target).select(newIdx);
276 ((Choice)target).select(newIdx);
293 helper.select(dragStartIdx);
296 ((Choice)target).select(newIdx);
411 ((Choice)target).select(dragStartIdx);
448 ((Choice)target).select(newIdx);
449 // NOTE: We get a repaint when Choice.select()
604 public void select(int index) { method in class:XChoicePeer
[all...]
H A DXTextFieldPeer.java90 select(start, end);
305 xtext.select(selStart,selStart);
323 public void select(int s, int e) { method in class:XTextFieldPeer
324 xtext.select(s,e);
H A DXListPeer.java183 // The select()ed item should become the focused item, but we don't
184 // get the select() call because the peer generally hasn't yet been
186 // TODO: For multi-select lists, it should be the highest selected index
601 // Backward-compatible bug: even if a single-select
665 assert multipleSelections : "Shouldn't get a deselect for a single-select List";
700 // Multi-select only:
711 // Single-select only:
713 // and select the item under the mouse
818 // If single-select, select th
1212 public void select(int index) { method in class:XListPeer
[all...]
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
/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/macosx/classes/com/apple/laf/
H A DAquaSpinnerUI.java333 select(spinner);
346 private void select(final JSpinner spinnerComponent) { method in class:AquaSpinnerUI.ArrowButtonHandler
362 if (!select(ftf, iterator, field) && field == DateFormat.Field.HOUR0) {
363 select(ftf, iterator, DateFormat.Field.HOUR1);
372 private boolean select(final JFormattedTextField ftf, final AttributedCharacterIterator iterator, final DateFormat.Field field) { method in class:AquaSpinnerUI.ArrowButtonHandler
383 ftf.select(start, end);
/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/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 DDefaultEditorKit.java720 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...]
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/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());
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintControl.cpp586 jobject select = NULL; local
/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

Completed in 182 milliseconds

123