HomeSort by relevance Sort by last modified time
    Searched full:selected (Results 1 - 25 of 1834) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/libs/vogar-expect/
README 0 Selected classes taken from http://code.google.com/p/vogar/
  /external/yaffs2/yaffs2/
moduleconfig.h 13 /* Default: Not selected */
17 /* Default: Not selected */
22 /* Default: Selected */
26 /* Default: Selected */
  /external/webkit/WebCore/manual-tests/
autoscroll-when-outside-window.html 5 <p>If the bug occurs, then this text won't be selected until you move the mouse slightly. If the bug does not occur, this text should be selected.</p>
drag-out-of-background-window.html 7 <p><b>BUG ID:</b> <a href="http://bugs.webkit.org/show_bug.cgi?id=15077">Bugzilla bug 15077</a> REGRESSION: Cannot drag selected text out of a background window</p>
12 3. With this window in the background, click and hold inside the selected text,
18 drag the selected text out.
22 As soon as you click in the selected text, this window will come to the foreground
23 and you may not be able to drag the selected text.
select-option-in-onload.html 5 <title>Programmatically selected popup item not shown</title>
11 myPopup.options[i].selected = true;
18 <p>The popup below has the item "FAIL" selected by default in the html, but a javascript function
26 <option value="3" selected="selected">FAIL</option>
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SelectionDependentPanel.java 31 * @return the current device or null if none are selected.
39 * @return the current client or null if none are selected.
46 * Sent when a new device is selected.
47 * @param selectedDevice the selected device.
57 * Sent when a new client is selected.
58 * @param selectedClient the selected client.
68 * Sent when a new device is selected. The new device can be accessed
74 * Sent when a new client is selected. The new client can be accessed
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SmsBroadcastConfigInfo.java 33 * selected false means message types specified in {@code <fromServiceId, toServiceId>}
42 private boolean selected; field in class:SmsBroadcastConfigInfo
48 int toScheme, boolean selected) {
53 this.selected = selected;
113 * @param selected the selected to set
115 public void setSelected(boolean selected) {
116 this.selected = selected;
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionsView.java 44 * Gets the position of the selected suggestion.
46 * @return A 0-based index, or {@code -1} if no suggestion is selected.
53 * Gets the selected suggestion.
55 * @return {@code null} if no suggestion is selected.
  /external/webkit/WebCore/inspector/front-end/
Placard.js 43 this.selected = false;
73 get selected()
78 set selected(x)
91 this.element.addStyleClass("selected");
99 this.element.removeStyleClass("selected");
104 this.selected = !this.selected;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListInterleaveFocusablesTest.java 55 assertEquals("selected item position", 1, mListView.getSelectedItemPosition());
66 assertEquals("selected item position", 3, mListView.getSelectedItemPosition());
75 assertEquals("selected item position", 1, mListView.getSelectedItemPosition());
87 assertEquals("selected item position", 4, mListView.getSelectedItemPosition());
96 assertEquals("selected item position", 5, mListView.getSelectedItemPosition());
102 assertEquals("selected view focused", isFocused, view.isFocused());
103 assertEquals("selected position's isSelected should be the inverse "
ListWithScreenOfNoSelectablesTest.java 63 // nothing should be selected
64 assertEquals("selected position", ListView.INVALID_POSITION, mListView.getSelectedItemPosition());
65 assertNull("selected view", mListView.getSelectedView());
87 // nothing should be selected
88 assertEquals("selected position", ListView.INVALID_POSITION, mListView.getSelectedItemPosition());
89 assertNull("selected view", mListView.getSelectedView());
94 assertEquals("selected position", ListView.INVALID_POSITION, mListView.getSelectedItemPosition());
99 assertEquals("selected position", 0, mListView.getSelectedItemPosition());
  /sdk/sdkmanager/libs/sdkuilib/tests/com/android/sdkuilib/internal/repository/
UpdaterLogicTest.java 61 ArrayList<Archive> selected = new ArrayList<Archive>(); local
72 ArchiveInfo fai = mul.findPlatformDependency(a2, out, selected, remote, sources, locals);
78 // p2 is now selected, and should be scheduled for install in out
80 selected.add(p2_archive);
81 ArchiveInfo ai2 = mul.findPlatformDependency(a2, out, selected, remote, sources, locals);
97 ArrayList<Archive> selected = new ArrayList<Archive>(); local
108 ArchiveInfo fai = mul.findToolsDependency(p2, out, selected, remote, sources, locals);
114 // t2 is now selected and can be used as a dependency
116 selected.add(t2_archive);
117 ArchiveInfo ai2 = mul.findToolsDependency(p2, out, selected, remote, sources, locals);
    [all...]
  /external/junit/src/junit/swingui/
TestRunView.java 11 * the currently selected tests. A TestRunView is
16 * Returns the currently selected Test in the View
  /external/webkit/JavaScriptCore/tests/mozilla/
menuhead.html 92 var suite, testDir, test, radioName, selected, available, pct;
99 selected = available = 0;
106 selected++;
108 totalSelected += selected;
110 pct = parseInt((selected / available) * 100);
114 elements["SUMMARY_" + suite].value = selected + "/" + available +
115 " (" + pct + "%) selected";
123 pct + "%) selected";
  /external/webkit/WebCore/manual-tests/wml/
select-element.wml 6 <p>You can select one or more options, and then click 'Answer', the second card will tell you what you selected</p>
22 <p>You selected: $(cars)</p>
  /external/webkit/WebCore/wml/
WMLOptionElement.cpp 115 if (selected() && (select = ownerSelectElement(this)))
121 bool WMLOptionElement::selected() const function in class:WebCore::WMLOptionElement
123 return m_data.selected();
126 void WMLOptionElement::setSelectedState(bool selected)
128 if (this->selected() == selected)
131 OptionElement::setSelectedState(m_data, this, selected);
134 if (select->multiple() || selected)
  /packages/apps/Mms/src/org/w3c/dom/smil/
SMILSwitchElement.java 23 * selected element is not yet available.
24 * @return The selected <code>Element</code> for thisd <code>switch</code>
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemsExpandOnSelection.java 28 * A list where each item expands by 1.5 when selected.
71 public void setSelected(boolean selected) {
72 super.setSelected(selected);
73 if (selected) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
SelectionDependentViewPart.java 51 * Sent when a new {@link Client} is selected.
52 * @param selectedClient The selected client.
61 * Sent when a new {@link Device} is selected.
62 * @param selectedDevice the selected device.
  /external/ppp/pppd/plugins/pppoatm/
atmsap.h 14 * Selected ISO/IEC TR 9577 Network Layer Protocol Identifiers (NLPID)
20 * Selected Organizationally Unique Identifiers (OUIs)
27 * Selected vendor-specific application identifiers (for B-HLI). Such an
  /external/proguard/src/proguard/gui/
ListPanel.java 89 // Remove the selected elements.
109 // Move the selected elements up.
130 // Move the selected elements down.
159 // Remove the selected elements from this panel.
204 // Make sure it is selected.
217 // Make sure they are selected.
230 // Remember the selected elements.
233 // Remove the selected elements.
242 // Reinsert the selected elements.
254 // Make sure they are selected
    [all...]
  /external/webkit/WebCore/dom/
OptionElement.h 37 virtual bool selected() const = 0;
45 static void setSelectedState(OptionElementData&, Element*, bool selected);
67 bool selected() const { return m_selected; } function in class:WebCore::OptionElementData
68 void setSelected(bool selected) { m_selected = selected; }
  /external/webkit/WebCore/html/
HTMLOptionElement.cpp 138 bool HTMLOptionElement::selected() const function in class:WebCore::HTMLOptionElement
142 return m_data.selected();
145 void HTMLOptionElement::setSelected(bool selected)
147 if (m_data.selected() == selected)
150 OptionElement::setSelectedState(m_data, this, selected);
153 select->setSelectedIndex(selected ? index() : -1, false);
156 void HTMLOptionElement::setSelectedState(bool selected)
158 OptionElement::setSelectedState(m_data, this, selected);
229 // Avoid our selected() getter since it will recalculate list items incorrectly for us
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListSetSelectionTest.java 58 // Nothing should be selected
80 assertTrue("Selected item not visible in list", found);
88 // Nothing should be selected
112 assertTrue("Selected item not visible in list", found);
126 // Nothing should be selected
146 assertTrue("Selected item not visible in list", found);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/
UiContentOutlinePage.java 110 mDeleteAction.setToolTipText("Removes an existing selected element.");
121 mUpAction.setToolTipText("Moves the selected element up");
132 mDownAction.setToolTipText("Moves the selected element down");
261 List<UiElementNode> selected = getModelSelections();
263 if (selected != null) {
264 doCreateMenuAction(manager, selected);
276 * Adds the menu actions to the context menu when the given UI node is selected in
280 * @param selected The UI node selected in the tree. Can be null, in which case the root
283 private void doCreateMenuAction(IMenuManager manager, List<UiElementNode> selected) {
389 ArrayList<UiElementTreeEditPart> selected = new ArrayList<UiElementTreeEditPart>(); local
418 ArrayList<UiElementNode> selected = new ArrayList<UiElementNode>(); local
    [all...]

Completed in 625 milliseconds

1 2 3 4 5 6 7 8 91011>>