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

1 2 3 4 5 6

  /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...]
  /external/webkit/WebCore/html/
HTMLDataGridRowElement.idl 31 attribute boolean selected; // Whether or not the row is currently selected.
HTMLDataGridRowElement.h 42 bool selected() const;
HTMLDataGridRowElement.cpp 51 bool HTMLDataGridRowElement::selected() const function in class:WebCore::HTMLDataGridRowElement
56 void HTMLDataGridRowElement::setSelected(bool selected)
58 setAttribute(selectedAttr, selected ? "" : 0);
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...]
HTMLOptionElement.idl 37 attribute boolean selected;
HTMLOptionElement.h 63 virtual bool selected() const;
  /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; }
OptionElement.cpp 40 void OptionElement::setSelectedState(OptionElementData& data, Element* element, bool selected)
42 if (data.selected() == selected)
45 data.setSelected(selected);
SelectElement.cpp 103 lastOnChangeSelection.append(optionElement && optionElement->selected());
142 cachedStateForActiveSelection.append(optionElement && optionElement->selected());
194 bool selected = optionElement && optionElement->selected(); local
195 if (selected != lastOnChangeSelection[i])
197 lastOnChangeSelection[i] = selected;
208 int selected = selectedIndex(data, element); local
209 if (data.lastOnChangeIndex() != selected && data.userDrivenChange()) {
210 data.setLastOnChangeIndex(selected);
274 if (!foundSelected && (data.usesMenuList() || (!data.multiple() && optionElement->selected()))) {
428 bool selected = optionElement && optionElement->selected(); local
877 int selected = selectedIndex(data, element); local
    [all...]
  /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;
  /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)
WMLOptionElement.h 50 virtual bool selected() const;
  /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...]
  /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.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...]
GraphicalLayoutEditor.java 490 ArrayList<UiElementNode> selected = new ArrayList<UiElementNode>();
492 // filter selected items and only keep those we can handle
498 selected.add(uiNode);
503 if (selected.size() > 0) {
504 doCreateMenuAction(manager, mViewer, selected);
511 final ArrayList<UiElementNode> selected) {
512 if (selected != null) {
514 for (UiElementNode uiNode : selected) {
523 null, selected, true /* cut */));
525 null, selected, false /* cut */))
    [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityListBoxOption.cpp 83 return static_cast<HTMLOptionElement*>(m_optionElement)->selected();
159 void AccessibilityListBoxOption::setSelected(bool selected)
169 if ((isOptionSelected && selected) || (!isOptionSelected && !selected))
  /external/wpa_supplicant_6/wpa_supplicant/
wps_supplicant.h 37 struct wpa_scan_res *selected,
78 struct wpa_scan_res *selected,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
CopyCutAction.java 59 * @param selected The UI node to cut or copy. It *must* have a non-null XML node.
63 UiElementNode selected, boolean performCut) {
64 this(editor, clipboard, xmlCommit, toList(selected), performCut);
70 * @param selected The UI nodes to cut or copy. They *must* have a non-null XML node.
75 List<UiElementNode> selected, boolean performCut) {
94 mUiNodes = selected;
211 private static ArrayList<UiElementNode> toList(UiElementNode selected) {
213 if (selected != null) {
215 list.add(selected);
UiTreeBlock.java 85 * selected UI element node.
440 SectionHelper.addControlTooltip(mRemoveButton, "Removes an existing selected element.");
452 SectionHelper.addControlTooltip(mRemoveButton, "Moves the selected element up.");
464 SectionHelper.addControlTooltip(mRemoveButton, "Moves the selected element down.");
491 ArrayList<UiElementNode> selected = filterSelection((ITreeSelection) selection);
492 doCreateMenuAction(manager, selected);
503 * Adds the menu actions to the context menu when the given UI node is selected in
507 * @param selected The UI nodes selected in the tree. Can be null, in which case the root
510 private void doCreateMenuAction(IMenuManager manager, ArrayList<UiElementNode> selected) {
641 ArrayList<UiElementNode> selected = new ArrayList<UiElementNode>(); local
688 ArrayList<UiElementNode> selected = filterSelection((ITreeSelection) selection); local
702 ArrayList<UiElementNode> selected = filterSelection((ITreeSelection) selection); local
716 ArrayList<UiElementNode> selected = filterSelection((ITreeSelection) selection); local
    [all...]
  /external/wpa_supplicant/
events.c 48 wpa_printf(MSG_DEBUG, "Selected network is disabled");
206 wpa_printf(MSG_DEBUG, "Selected network is configured to use "
211 wpa_printf(MSG_DEBUG, "Selected network is configured to use SIM "
307 wpa_printf(MSG_DEBUG, " selected based on RSN IE");
342 wpa_printf(MSG_DEBUG, " selected based on WPA IE");
359 struct wpa_scan_result *bss, *selected = NULL; local
370 for (i = 0; i < num && !selected; i++) {
409 selected = bss;
411 wpa_printf(MSG_DEBUG, " selected WPA AP "
424 for (i = 0; i < num && !selected; i++)
504 struct wpa_scan_result *selected = NULL; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListOfItemsTallerThanScreenTest.java 76 assertEquals("selected position", 0, mListView.getSelectedItemPosition());
77 assertTrue("same view should be selected", view.isSelected());
121 assertTrue("top of selected view should be above top of list",
176 * Assuming the selected view is overlapping the bottom edge, how many times
179 * b) the selected view is the last item in the list, and we are scrolled to the bottom
183 View selected = mListView.getSelectedView(); local
186 selected.getBottom() > realBottom);
188 selected.getTop() < realBottom);
190 int pixelsOffScreen = selected.getBottom() - realBottom;
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
SelectorImpl.java 228 int selected = success ? processSelectResult() : 0; local
235 selected -= doCancel();
237 return selected;
292 * Updates the key ready ops and selected key set with data from the flags
306 int selected = 0; local
333 selected++;
337 selected++;
342 return selected;
351 * Removes cancelled keys from the key set and selected key set, and
353 * removed from the selected key set
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
TabStripView.java 56 public void setSelected(int index, boolean selected) {
58 getChildAt(index).setSelected(selected);
73 // Always draw the selected tab last, so that drop shadows are drawn
102 Rect selBounds = new Rect(); // Bounds of the selected tab indicator

Completed in 1050 milliseconds

1 2 3 4 5 6