Searched defs:selectedIndex (Results 1 - 25 of 26) sorted by relevance

12

/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebPageProxyWin.cpp58 void WebPageProxy::setPopupMenuSelectedIndex(int32_t selectedIndex) argument
63 static_cast<WebPopupMenuProxyWin*>(m_activePopupMenu.get())->setFocusedIndex(selectedIndex);
H A DWebPopupMenuProxyWin.cpp192 void WebPopupMenuProxyWin::showPopupMenu(const IntRect& rect, TextDirection, double, const Vector<WebPopupItem>& items, const PlatformPopupMenuData& data, int32_t selectedIndex) argument
196 m_newSelectedIndex = selectedIndex;
241 int index = selectedIndex;
/external/webkit/Source/WebKit/chromium/public/
H A DWebPopupMenuInfo.h43 int selectedIndex; member in struct:WebKit::WebPopupMenuInfo
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DWebPopupMenuProxyQt.cpp45 void WebPopupMenuProxyQt::showPopupMenu(const IntRect& rect, WebCore::TextDirection, double, const Vector<WebPopupItem>& items, const PlatformPopupMenuData&, int32_t selectedIndex) argument
/external/webkit/Source/WebCore/html/
H A DHTMLOptionsCollection.cpp75 int HTMLOptionsCollection::selectedIndex() const function in class:WebCore::HTMLOptionsCollection
77 return static_cast<HTMLSelectElement*>(base())->selectedIndex();
H A DHTMLSelectElement.cpp73 int HTMLSelectElement::selectedIndex() const function in class:WebCore::HTMLSelectElement
75 return SelectElement::selectedIndex(m_data, this);
106 if (optionIndex == selectedIndex())
142 int firstSelectionIndex = selectedIndex();
164 return optionToListIndex(selectedIndex());
437 int oldSelectedIndex = selectedIndex();
440 // Restore selectedIndex after changing the multiple flag to preserve
/external/webkit/Source/WebKit/chromium/src/
H A DAutoFillPopupMenuClient.h89 virtual int selectedIndex() const { return m_selectedIndex; } function in class:WebKit::AutoFillPopupMenuClient
H A DWebViewImpl.cpp658 && m_autoFillPopup->selectedIndex() != -1) {
670 int selectedIndex = m_autoFillPopup->selectedIndex(); local
672 if (!m_autoFillPopupClient->canRemoveSuggestionAtIndex(selectedIndex))
676 WebString value = m_autoFillPopupClient->itemText(selectedIndex);
680 m_autoFillPopupClient->removeSuggestionAtIndex(selectedIndex);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebPopupMenu.cpp133 int selectedIndex = m_popupClient->selectedIndex(); local
134 WebProcess::shared().connection()->send(Messages::WebPageProxy::SetPopupMenuSelectedIndex(selectedIndex), m_page->pageID());
/external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
H A Dpopup.js57 var selectedIndex = 0; variable
67 addApp(appsDiv, item, i == selectedIndex);
73 selectedIndex = 0;
140 selectedIndex = newIndex;
174 changeSelection(selectedIndex + 1);
177 changeSelection(selectedIndex - 1);
186 var app = appList[selectedIndex];
/external/webkit/Source/WebCore/rendering/
H A DRenderMenuList.cpp182 setTextFromOption(toSelectElement(static_cast<Element*>(node()))->selectedIndex());
301 select->optionToListIndex(select->selectedIndex()));
338 int index = selectedIndex();
517 int RenderMenuList::selectedIndex() const function in class:WebCore::RenderMenuList
520 return select->optionToListIndex(select->selectedIndex());
H A DRenderTextControlSingleLine.cpp992 int RenderTextControlSingleLine::selectedIndex() const function in class:WebCore::RenderTextControlSingleLine
/external/webkit/Source/WebCore/wml/
H A DWMLSelectElement.cpp107 int WMLSelectElement::selectedIndex() const function in class:WebCore::WMLSelectElement
109 return SelectElement::selectedIndex(m_data, this);
222 return optionToListIndex(selectedIndex());
/external/webkit/Source/WebKit/chromium/tests/
H A DPopupMenuTest.cpp87 virtual int selectedIndex() const { return m_selectIndex; } function in class:__anon14790::TestPopupMenuClient
199 int selectedIndex() const { return m_popupMenuClient.selectedIndex(); } function in class:__anon14790::SelectPopupMenuTest
306 EXPECT_EQ(2, selectedIndex());
313 EXPECT_EQ(3, selectedIndex());
320 EXPECT_EQ(4, selectedIndex());
337 EXPECT_EQ(1, selectedIndex());
358 EXPECT_EQ(0, selectedIndex());
376 EXPECT_EQ(2, selectedIndex());
/external/webkit/Source/WebCore/dom/
H A DSelectElement.cpp161 data.setLastOnChangeIndex(selectedIndex(data, element));
253 int selected = selectedIndex(data, element);
342 int SelectElement::selectedIndex(const SelectElementData& data, const Element* element) function in class:WebCore::SelectElement
600 int listIndex = optionToListIndex(data, element, selectedIndex(data, element));
678 int listIndex = optionToListIndex(data, element, selectedIndex(data, element));
738 setActiveSelectionAnchorIndex(data, element, selectedIndex(data, element));
744 // If there was no selectedIndex() for the previous initialization, or
798 int startIndex = optionToListIndex(data, element, selectedIndex(data, element));
968 int selected = selectedIndex(data, element);
/external/webkit/Source/WebCore/inspector/front-end/
H A DStylesSidebarPane.js472 var selectedOption = options[this.settingsSelectElement.selectedIndex];
476 var selectedIndex = 0; variable
479 selectedIndex = i;
484 this.settingsSelectElement.selectedIndex = selectedIndex;
489 var selectedOption = this.settingsSelectElement[this.settingsSelectElement.selectedIndex];
/external/webkit/Source/WebKit/win/
H A DDOMHTMLClasses.cpp655 HRESULT STDMETHODCALLTYPE DOMHTMLSelectElement::selectedIndex( function in class:DOMHTMLSelectElement
663 /* [in] */ int /*selectedIndex*/)
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h743 @property int selectedIndex AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
782 @property int selectedIndex; variable
/external/webkit/Source/WebCore/platform/chromium/
H A DPopupMenuChromium.cpp125 int selectedIndex() const { return m_selectedIndex; } function in class:WebCore::PopupListBox
555 // ASSERT(popupWindow(popup)->listBox()->selectedIndex() == index);
583 int PopupContainer::selectedIndex() const function in class:WebCore::PopupContainer
585 return m_listBox->selectedIndex();
1262 m_selectedIndex = m_popupClient->selectedIndex();
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityRenderObject.cpp1126 int selectedIndex = selectNode->selectedIndex(); local
1130 if (selectedIndex >= 0 && selectedIndex < (int)listItems.size())
1131 selectedOption = listItems[selectedIndex];
/external/webkit/Source/WebCore/accessibility/gtk/
H A DAccessibilityObjectWrapperAtk.cpp855 int selectedIndex = selectNode->selectedIndex(); local
858 if (selectedIndex < 0 || selectedIndex >= static_cast<int>(listItems.size()))
861 return optionFromList(selection, selectedIndex);
932 int selectedIndex = selectNode->selectedIndex(); local
935 return selectedIndex >= 0 && selectedIndex < static_cast<int>(listItems.size());
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp2239 void WebPageProxy::showPopupMenu(const IntRect& rect, uint64_t textDirection, const Vector<WebPopupItem>& items, int32_t selectedIndex, const PlatformPopupMenuData& data) argument
2254 protectedActivePopupMenu->showPopupMenu(rect, static_cast<TextDirection>(textDirection), m_viewScaleFactor, items, data, selectedIndex);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 587 milliseconds

12