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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/public/web/
WebPopupMenuInfo.h 43 int selectedIndex;
  /packages/apps/Settings/src/com/android/settings/
SmsListPreference.java 46 CharSequence[] objects, Drawable[] imageDrawables, int selectedIndex) {
48 mSelectedIndex = selectedIndex;
80 int selectedIndex = findIndexOfValue(getValue());
82 R.layout.sms_preference_item, getEntries(), mEntryDrawables, selectedIndex);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOptionsCollection.h 44 int selectedIndex() const;
HTMLSelectElementWin.cpp 51 int index = selectedIndex();
HTMLOptionsCollection.idl 26 attribute long selectedIndex;
HTMLOptionsCollection.cpp 84 int HTMLOptionsCollection::selectedIndex() const
86 return toHTMLSelectElement(ownerNode())->selectedIndex();
HTMLSelectElement.idl 45 attribute long selectedIndex;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
Fingerprints.js 3 var type=formSelect.selectedIndex;
31 formSelect.selectedIndex=type;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupMenuTest.cpp 111 virtual int selectedIndex() const { return m_selectIndex; }
203 int selectedIndex() const { return m_popupMenuClient.selectedIndex(); }
328 EXPECT_EQ(2, selectedIndex());
335 EXPECT_EQ(3, selectedIndex());
342 EXPECT_EQ(4, selectedIndex());
360 EXPECT_EQ(1, selectedIndex());
382 EXPECT_EQ(0, selectedIndex());
400 EXPECT_EQ(2, selectedIndex());
  /external/chromium_org/third_party/WebKit/Source/platform/
PopupMenuClient.h 59 virtual int selectedIndex() const = 0;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
util.js 44 if (select.selectedIndex == -1) {
47 return select.options[select.selectedIndex].value;
queue.js 76 this._selectNode.selectedIndex == -1;
105 if (this._selectNode.selectedIndex == -1)
109 this._selectNode.options[this._selectNode.selectedIndex].value);
main.js 284 testSelector.selectedIndex = optionIndexByTest[previouslySelectedTest];
286 testSelector.selectedIndex =
290 testSelector.selectedIndex = 1;
367 if (testSelector.selectedIndex == testSelector.options.length - 1) {
370 var nextTest = testSelector.options[testSelector.selectedIndex + 1].value;
544 var nextTestIndex = testSelector.selectedIndex + 1;
552 testSelector.selectedIndex = nextTestIndex;
562 var previousTestIndex = testSelector.selectedIndex - 1;
570 testSelector.selectedIndex = previousTestIndex;
  /external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js 57 var selectedIndex = 0;
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/chromium_org/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js 57 var selectedIndex = 0;
67 addApp(appsDiv, item, i == selectedIndex);
73 selectedIndex = 0;
122 selectedIndex = newIndex;
156 changeSelection(selectedIndex + 1);
159 changeSelection(selectedIndex - 1);
168 var app = appList[selectedIndex];
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SuggestBox.js 279 * @param {number} selectedIndex
282 _updateItems: function(items, selectedIndex, userEnteredText)
294 if (typeof selectedIndex === "number")
295 this._selectItem(selectedIndex);
344 * @param {number} selectedIndex
348 updateSuggestions: function(anchorBox, completions, selectedIndex, canShowForSingleItem, userEnteredText)
351 this._updateItems(completions, selectedIndex, userEnteredText);
StatusBarButton.js 480 if (this._selectElement.selectedIndex >= 0)
481 return this._selectElement[this._selectElement.selectedIndex];
490 this._selectElement.selectedIndex = Array.prototype.indexOf.call(this._selectElement, option);
498 this._selectElement.selectedIndex = index;
504 selectedIndex: function()
506 return this._selectElement.selectedIndex;
OverridesView.js 225 this._deviceSelectElement.selectedIndex = i;
231 this._deviceSelectElement.selectedIndex = devices.length - 1;
406 var option = this._deviceSelectElement.options[this._deviceSelectElement.selectedIndex];
417 var option = this._deviceSelectElement.options[this._deviceSelectElement.selectedIndex];
424 var option = this._deviceSelectElement.options[this._deviceSelectElement.selectedIndex];
635 mediaSelectElement.selectedIndex = mediaSelectElement.options.length - 1;
644 var media = select.options[select.selectedIndex].value;
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/search_engines/
TemplateUrlService.java 146 public void setSearchEngine(int selectedIndex) {
148 nativeSetDefaultSearchProvider(mNativeTemplateUrlServiceAndroid, selectedIndex);
221 int selectedIndex);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/
popup.js 19 var ampm = $('a' + alarm + '_ampm').selectedIndex;
278 $('a1_ampm').selectedIndex = a1_ampm;
280 localStorage['a1_ampm'] = $('a1_ampm').selectedIndex;
323 $('a2_ampm').selectedIndex = a2_ampm;
325 localStorage['a2_ampm'] = $('a2_ampm').selectedIndex;
361 sound.selectedIndex = i;
365 localStorage['sound'] = sound.options[sound.selectedIndex].value;
367 localStorage['sound'] = sound.options[sound.selectedIndex].value;
398 var i = voice.selectedIndex;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdemo/
ttsdemo.js 36 var i = voices.selectedIndex - 1;
52 var voiceIndex = voices.selectedIndex - 1;
  /external/chromium/chrome/browser/ui/cocoa/
tabpose_window.h 101 - (int)selectedIndex;
  /external/chromium_org/chrome/browser/ui/cocoa/
tabpose_window.h 100 - (int)selectedIndex;
  /external/chromium_org/third_party/WebKit/Source/web/
ExternalPopupMenu.cpp 189 info->selectedIndex = m_popupMenuClient->selectedIndex();
  /external/chromium_org/content/renderer/
external_popup_menu.cc 44 popup_params.selected_item = popup_menu_info_.selectedIndex;

Completed in 154 milliseconds

1 2 3 4 5