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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/html/
HTMLDataGridRowElement.idl 31 attribute boolean selected; // Whether or not the row is currently selected.
HTMLDataGridRowElement.cpp 48 bool HTMLDataGridRowElement::selected() const function in class:WebCore::HTMLDataGridRowElement
53 void HTMLDataGridRowElement::setSelected(bool selected)
55 setAttribute(selectedAttr, selected ? "" : 0);
HTMLDataGridRowElement.h 39 bool selected() const;
HTMLOptionElement.idl 27 attribute [Reflect=selected] boolean defaultSelected;
36 attribute boolean selected;
HTMLOptionElement.cpp 62 bool defaultSelected, bool selected, ExceptionCode& ec)
76 element->setSelected(selected);
163 bool HTMLOptionElement::selected() const function in class:WebCore::HTMLOptionElement
167 return m_data.selected();
170 void HTMLOptionElement::setSelected(bool selected)
172 if (m_data.selected() == selected)
175 OptionElement::setSelectedState(m_data, this, selected);
178 select->setSelectedIndex(selected ? index() : -1, false);
181 void HTMLOptionElement::setSelectedState(bool selected)
    [all...]
  /external/webkit/Source/WebCore/dom/
OptionElement.h 38 virtual bool selected() const = 0;
46 static void setSelectedState(OptionElementData&, Element*, bool selected);
69 bool selected() const { return m_selected; } function in class:WebCore::OptionElementData
70 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);
  /external/webkit/Source/WebCore/page/brew/
ChromeClientBrew.h 46 virtual void createSelectPopup(PopupMenuClient*, int selected, const IntRect& rect) = 0;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsBroadcastConfigInfo.java 33 * selected false means message types specified in {@code <fromServiceId, toServiceId>}
48 int toScheme, boolean selected) {
53 mSelected = selected;
113 * @param selected the selected to set
115 public void setSelected(boolean selected) {
116 mSelected = selected;
120 * @return the selected
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSmsBroadcastConfigInfo.java 32 * selected false means message types specified in serviceCategory
46 int language, boolean selected) {
50 mSelected = selected;
75 * @return the selected
  /external/webkit/Source/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;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
SelectThemeAction.java 26 * Action which brings up the "Create new XML File" wizard, pre-selected with the
34 boolean selected) {
40 if (selected) {
41 setChecked(selected);
  /external/chromium/chrome/browser/resources/
collected_cookies.js 32 var selected = $('allowed-cookies').selectedItem;
33 if (!selected)
36 chrome.send('Block', [selected.pathId]);
40 var selected = $('blocked-cookies').selectedItem;
41 if (selected)
42 chrome.send('Allow', [selected.pathId]);
46 var selected = $('blocked-cookies').selectedItem;
47 if (selected)
48 chrome.send('AllowThisSession', [selected.pathId]);
wrench_menu.js 21 * @param {boolean} selected True to set the selection, or false otherwise.
23 set selected(selected) {
24 if (selected) {
25 this.classList.add('selected');
28 this.classList.remove('selected');
110 set selected(selected) {
111 if (selected) {
112 this.cut_.classList.add('selected');
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLOptionElement.cpp 120 if (selected() && (select = ownerSelectElement(this)))
126 bool WMLOptionElement::selected() const function in class:WebCore::WMLOptionElement
128 return m_data.selected();
131 void WMLOptionElement::setSelectedState(bool selected)
133 if (this->selected() == selected)
136 OptionElement::setSelectedState(m_data, this, selected);
139 if (select->multiple() || selected)
  /frameworks/ex/chips/src/com/android/ex/chips/recipientchip/
BaseRecipientChip.java 28 * Set the selected state of the chip.
30 void setSelected(boolean selected);
33 * Return true if the chip is selected.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ListViewTypeMenu.java 76 String selected = getSelectedLayout(); local
77 if (selected != null) {
78 if (selected.startsWith(ANDROID_LAYOUT_RESOURCE_PREFIX)) {
79 selected = selected.substring(ANDROID_LAYOUT_RESOURCE_PREFIX.length());
85 "simple_spinner_item", selected); //$NON-NLS-1$
88 "simple_spinner_dropdown_item", selected); //$NON-NLS-1$
94 "simple_list_item_1", selected); //$NON-NLS-1$
98 selected);
102 selected);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
WorkingSetHelper.java 42 IWorkingSet[] selected= getSelectedWorkingSet(selection); local
43 if (selected != null && selected.length > 0) {
44 for (int i= 0; i < selected.length; i++) {
45 if (!isValidWorkingSet(selected[i]))
48 return selected;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropObject.java 132 public static boolean checkCorner(int selected) {
133 return selected == TOP_LEFT || selected == TOP_RIGHT || selected == BOTTOM_RIGHT
134 || selected == BOTTOM_LEFT;
137 public static boolean checkEdge(int selected) {
138 return selected == MOVE_LEFT || selected == MOVE_TOP || selected == MOVE_RIGHT
139 || selected == MOVE_BOTTOM
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SelectionManager.java 49 public void onSelectionChange(Path path, boolean selected);
60 // selected items is down to zero.
137 // Convert to inverse selection mode if everything is selected.
182 ArrayList<Path> selected = new ArrayList<Path>(); local
191 if (!expandMediaSet(selected, set, maxSelection)) {
195 selected.add(id);
196 if (selected.size() > maxSelection) {
205 if (!expandMediaSet(selected, mDataManager.getMediaSet(id),
210 selected.add(id);
211 if (selected.size() > maxSelection)
    [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) {
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOptionElementConstructor.cpp 67 bool selected = false; local
75 selected = args[3]->BooleanValue();
78 RefPtr<HTMLOptionElement> option = HTMLOptionElement::createForJSConstructor(document, data, value, defaultSelected, selected, ec);
  /external/webkit/Source/WebCore/accessibility/
AccessibilityListBoxOption.cpp 83 return static_cast<HTMLOptionElement*>(m_optionElement)->selected();
169 void AccessibilityListBoxOption::setSelected(bool selected)
179 if ((isOptionSelected && selected) || (!isOptionSelected && !selected))
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSimpleAdapter.java 93 boolean selected; field in class:SelectCalendarsSimpleAdapter.CalendarRow
203 mData[p].selected = c.getInt(mVisibleColumn) != 0;
222 boolean selected = mData[position].selected;
274 if (selected) {
285 syncCheckBox.setChecked(selected);
294 if (selected) {
312 view.findViewById(R.id.color).setEnabled(selected && hasMoreColors(position));
313 view.setBackgroundDrawable(getBackground(position, selected));
323 visibleCheckBox.setChecked(selected);
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImplMac.java 51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) {
54 button.setSelected(selected);

Completed in 242 milliseconds

1 2 3 4 5 6 7 8 91011>>