Searched defs:selected (Results 1 - 25 of 109) sorted by relevance

12345

/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_galleries_dialog_controller.h47 Entry(const MediaGalleryPrefInfo& pref_info, bool selected) argument
49 selected(selected) {
54 bool selected; member in struct:MediaGalleriesDialogController::Entry
85 virtual void DidToggleEntry(MediaGalleryPrefId id, bool selected) = 0;
90 // The forget command in the context menu was selected.
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DVideoTrack.h16 static PassRefPtrWillBeRawPtr<VideoTrack> create(const String& id, const AtomicString& kind, const AtomicString& label, const AtomicString& language, bool selected) argument
18 return adoptRefWillBeNoop(new VideoTrack(id, kind, label, language, selected));
22 bool selected() const { return m_selected; } function in class:blink::FINAL
25 // Set selected to false without notifying the owner media element. Used when
26 // another video track is selected, implicitly deselecting this one.
38 VideoTrack(const String& id, const AtomicString& kind, const AtomicString& label, const AtomicString& language, bool selected);
H A DVideoTrack.cpp12 VideoTrack::VideoTrack(const String& id, const AtomicString& kind, const AtomicString& label, const AtomicString& language, bool selected) argument
14 , m_selected(selected)
23 void VideoTrack::setSelected(bool selected) argument
25 if (selected == m_selected)
28 m_selected = selected;
32 mediaElement()->selectedVideoTrackChanged(selected ? &selectedTrackId : 0);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentationImplMac.java51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { argument
54 button.setSelected(selected);
H A DButtonPropertyEditorPresentation.java58 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { argument
59 m_impl.setSelection(propertyTable, property, selected);
H A DButtonPropertyEditorPresentationImpl.java82 public void setSelection(PropertyTable propertyTable, Property property, boolean selected) { argument
85 button.setSelection(selected);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DSelectPopupDropdown.java34 Rect bounds, int[] selected) {
46 if (selected.length > 0) {
47 mInitialSelection = selected[0];
33 SelectPopupDropdown(ContentViewCore contentViewCore, List<SelectPopupItem> items, Rect bounds, int[] selected) argument
H A DSelectPopupDialog.java39 boolean multiple, int[] selected) {
73 for (int i = 0; i < selected.length; ++i) {
74 listView.setItemChecked(selected[i], true);
86 if (selected.length > 0) {
87 listView.setSelection(selected[0]);
88 listView.setItemChecked(selected[0], true);
38 SelectPopupDialog(ContentViewCore contentViewCore, List<SelectPopupItem> items, boolean multiple, int[] selected) argument
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DTypeAhead.cpp96 int selected = m_dataSource->indexOfSelectedOption(); local
97 int index = (selected < 0 ? 0 : selected) + searchStartOffset;
/external/chromium_org/chrome/browser/ui/views/
H A Dselect_file_dialog_extension_unittest.cc45 bool selected() const { return selected_; } function in class:TestListener
100 EXPECT_TRUE(listener->selected());
112 EXPECT_FALSE(listener->selected());
H A Dssl_client_certificate_selector.cc144 int selected = table_->FirstSelectedRow(); local
145 if (selected >= 0 &&
146 selected < static_cast<int>(cert_request_info()->client_certs.size()))
147 return cert_request_info()->client_certs[selected].get();
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXListBoxOption.cpp72 return isHTMLOptionElement(node()) && toHTMLOptionElement(node())->selected();
125 void AXListBoxOption::setSelected(bool selected) argument
135 if ((isOptionSelected && selected) || (!isOptionSelected && !selected))
/external/chromium_org/third_party/npapi/npspy/windows/
H A Dloggerw.cpp96 BOOL selected = TRUE; local
97 if(profile.getBool(ActionName[i], &selected))
98 bMutedCalls[i] = !selected;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCFlatButton.java157 public void setSelected(boolean selected) { argument
158 m_selected = selected;
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwps_supplicant.h44 struct wpa_bss *selected, struct wpa_ssid *ssid);
124 struct wpa_bss *selected,
123 wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s, struct wpa_bss *selected, struct wpa_ssid *ssid) argument
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRunnerController.java203 boolean selected, boolean expanded, boolean leaf, int row,
202 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/external/chromium_org/ash/system/tray/
H A Dsystem_tray_delegate.h59 bool selected; member in struct:ash::IMEPropertyInfo
70 bool selected; member in struct:ash::IMEInfo
220 // Returns the currently selected IME.
226 // Returns a list of properties for the currently selected IME.
229 // Switches to the selected input method.
/external/chromium_org/third_party/skia/experimental/DrawingBoard/
H A DSkColorPalette.cpp82 int selected = selectSlot(curr); local
83 if (selected >= 0) {
88 fSelected = selected;
/external/skia/experimental/DrawingBoard/
H A DSkColorPalette.cpp82 int selected = selectSlot(curr); local
83 if (selected >= 0) {
88 fSelected = selected;
/external/chromium_org/ash/system/ime/
H A Dtray_ime.cc40 // it is selected. This view exposes itself as a checkbox to the accessibility
46 bool selected)
47 : HoverHighlightView(listener), selected_(selected) {
49 label, gfx::ALIGN_LEFT, selected ? gfx::Font::BOLD : gfx::Font::NORMAL);
140 this, list[i].name, list[i].selected);
150 this, property_list[i].name, property_list[i].selected);
44 SelectableHoverHighlightView(ViewClickListener* listener, const base::string16& label, bool selected) argument
/external/chromium_org/chrome/browser/extensions/api/browsing_data/
H A Dbrowsing_data_api.cc105 // Returns false if any of the selected data types are not allowed to be
153 scoped_ptr<base::DictionaryValue> selected(new base::DictionaryValue);
159 SetDetails(selected.get(), permitted.get(),
162 SetDetails(selected.get(), permitted.get(),
165 SetDetails(selected.get(), permitted.get(),
168 SetDetails(selected.get(), permitted.get(),
171 SetDetails(selected.get(), permitted.get(),
174 SetDetails(selected.get(), permitted.get(),
177 SetDetails(selected.get(), permitted.get(),
180 SetDetails(selected
372 bool selected = false; local
[all...]
/external/chromium_org/chrome/browser/ui/autofill/
H A Dpassword_generation_popup_controller_impl.cc119 // We suppress tab if the password is selected because we will
136 void PasswordGenerationPopupControllerImpl::PasswordSelected(bool selected) { argument
137 if (!display_password_ || selected == password_selected_)
140 password_selected_ = selected;
/external/chromium_org/chrome/browser/ui/cocoa/tabs/
H A Dtab_controller.h33 // to be sent a message when the tab is selected by the user clicking. Setting
60 SEL action_; // selector sent when tab is selected by clicking
73 // Note that |-selected| will return YES if the controller is |-active|, too.
77 @property(assign, nonatomic) BOOL selected; variable
117 // button, based on criteria such as the tab's selected state and its current
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dstartup_pages_handler.cc207 const base::ListValue* selected; local
208 CHECK(args->GetList(1, &selected));
211 for (size_t i = 0; i < selected->GetSize(); ++i) {
213 CHECK(selected->GetInteger(i, &index));
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLOptionElement.cpp70 bool defaultSelected, bool selected, ExceptionState& exceptionState)
82 element->setSelected(selected);
128 // Changing the text causes a recalc of a select's items, which will reset the selected
130 // preserve the selected item.
213 bool HTMLOptionElement::selected() const function in class:blink::HTMLOptionElement
230 void HTMLOptionElement::setSelected(bool selected) argument
232 if (m_isSelected == selected)
235 setSelectedState(selected);
238 select->optionSelectionStateChanged(this, selected);
241 void HTMLOptionElement::setSelectedState(bool selected) argument
69 createForJSConstructor(Document& document, const String& data, const AtomicString& value, bool defaultSelected, bool selected, ExceptionState& exceptionState) argument
[all...]

Completed in 747 milliseconds

12345