HomeSort by relevance Sort by last modified time
    Searched full:listindex (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
PopupMenuClient.h 42 virtual void valueChanged(unsigned listIndex, bool fireEvents = true) = 0;
43 virtual void selectionChanged(unsigned listIndex, bool fireEvents = true) = 0;
46 virtual String itemText(unsigned listIndex) const = 0;
47 virtual String itemLabel(unsigned listIndex) const = 0;
48 virtual String itemIcon(unsigned listIndex) const = 0;
49 virtual String itemToolTip(unsigned listIndex) const = 0;
50 virtual String itemAccessibilityText(unsigned listIndex) const = 0;
51 virtual bool itemIsEnabled(unsigned listIndex) const = 0;
52 virtual PopupMenuStyle itemStyle(unsigned listIndex) const = 0;
61 virtual bool itemIsSeparator(unsigned listIndex) const = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
AutofillPopupMenuClient.cpp 68 WebString AutofillPopupMenuClient::getSuggestion(unsigned listIndex) const
70 ASSERT_WITH_SECURITY_IMPLICATION(listIndex < m_names.size());
71 return m_names[listIndex];
74 WebString AutofillPopupMenuClient::getLabel(unsigned listIndex) const
76 ASSERT_WITH_SECURITY_IMPLICATION(listIndex < m_labels.size());
77 return m_labels[listIndex];
80 WebString AutofillPopupMenuClient::getIcon(unsigned listIndex) const
82 ASSERT_WITH_SECURITY_IMPLICATION(listIndex < m_icons.size());
83 return m_icons[listIndex];
86 void AutofillPopupMenuClient::removeSuggestionAtIndex(unsigned listIndex)
    [all...]
AutofillPopupMenuClient.h 58 // Returns the suggestion at |listIndex|.
59 virtual WebString getSuggestion(unsigned listIndex) const;
61 // Returns the label at |listIndex|.
62 virtual WebString getLabel(unsigned listIndex) const;
64 // Returns the icon at |listIndex|.
65 virtual WebString getIcon(unsigned listIndex) const;
67 // Removes the suggestion at |listIndex| from the list of suggestions.
68 virtual void removeSuggestionAtIndex(unsigned listIndex);
70 // Returns true if the suggestion at |listIndex| can be removed.
71 bool canRemoveSuggestionAtIndex(unsigned listIndex);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMenuList.h 50 void didSetSelectedIndex(int listIndex);
77 virtual void valueChanged(unsigned listIndex, bool fireOnChange = true) OVERRIDE;
80 virtual String itemText(unsigned listIndex) const OVERRIDE;
81 virtual String itemLabel(unsigned listIndex) const OVERRIDE;
82 virtual String itemIcon(unsigned listIndex) const OVERRIDE;
83 virtual String itemToolTip(unsigned listIndex) const OVERRIDE;
84 virtual String itemAccessibilityText(unsigned listIndex) const OVERRIDE;
85 virtual bool itemIsEnabled(unsigned listIndex) const OVERRIDE;
86 virtual PopupMenuStyle itemStyle(unsigned listIndex) const OVERRIDE;
95 virtual bool itemIsSeparator(unsigned listIndex) const OVERRIDE
    [all...]
RenderMenuList.cpp 341 void RenderMenuList::valueChanged(unsigned listIndex, bool fireOnChange)
350 select->optionSelectedByUser(select->listToOptionIndex(listIndex), fireOnChange);
353 void RenderMenuList::listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow)
355 selectElement()->listBoxSelectItem(listIndex, allowMultiplySelections, shift, fireOnChangeNow);
363 void RenderMenuList::didSetSelectedIndex(int listIndex)
365 didUpdateActiveOption(selectElement()->listToOptionIndex(listIndex));
378 int listIndex = select->optionToListIndex(optionIndex);
379 if (listIndex < 0 || listIndex >= static_cast<int>(select->listItems().size()))
385 String RenderMenuList::itemText(unsigned listIndex) cons
    [all...]
RenderListBox.h 144 void valueChanged(unsigned listIndex);
150 void paintItemForeground(PaintInfo&, const LayoutPoint&, int listIndex);
151 void paintItemBackground(PaintInfo&, const LayoutPoint&, int listIndex);
RenderListBox.cpp 392 void RenderListBox::paintItemForeground(PaintInfo& paintInfo, const LayoutPoint& paintOffset, int listIndex)
399 HTMLElement* element = listItems[listIndex];
429 LayoutRect r = itemBoundingBoxRect(paintOffset, listIndex);
445 void RenderListBox::paintItemBackground(PaintInfo& paintInfo, const LayoutPoint& paintOffset, int listIndex)
448 HTMLElement* element = listItems[listIndex];
462 LayoutRect itemRect = itemBoundingBoxRect(paintOffset, listIndex);
623 void RenderListBox::valueChanged(unsigned listIndex)
626 element->setSelectedIndex(element->listToOptionIndex(listIndex));
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SimPhoneBookTest.java 49 int adnIndex, listIndex = 0;
55 listIndex = adnIndex - 1; // listIndex is zero based.
56 originalAdn = adnRecordList.get(listIndex);
77 AdnRecord tmpAdn = adnRecordList.get(listIndex);
86 tmpAdn = adnRecordList.get(listIndex);
96 tmpAdn = adnRecordList.get(listIndex);
105 tmpAdn = adnRecordList.get(listIndex);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemFocusablesClose.java 33 * @param listIndex The index of the currently visible items
36 public View getChildOfItem(int listIndex, int index) {
37 return ((ViewGroup) getListView().getChildAt(listIndex)).getChildAt(index);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesFarApartTest.java 47 * @param listIndex The index of the currently visible items
50 public View getChildOfItem(int listIndex, int index) {
51 return ((ViewGroup) mListView.getChildAt(listIndex)).getChildAt(index);
55 public int getTopOfChildOfItem(int listIndex, int index) {
56 ViewGroup listItem = (ViewGroup) mListView.getChildAt(listIndex);
61 public int getBottomOfChildOfItem(int listIndex, int index) {
62 ViewGroup listItem = (ViewGroup) mListView.getChildAt(listIndex);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp 143 int listIndex = optionToListIndex(0);
144 ASSERT(listIndex >= 0);
145 if (listIndex < 0)
147 return !listIndex && toHTMLOptionElement(listItems()[listIndex])->value().isEmpty();
175 void HTMLSelectElement::listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow)
178 optionSelectedByUser(listToOptionIndex(listIndex), fireOnChangeNow, false);
180 updateSelectedState(listIndex, allowMultiplySelections, shift);
223 int listIndex = optionToListIndex(optionIndex);
224 if (listIndex < 0
    [all...]
HTMLSelectElement.h 98 void listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow = true);
102 int listToOptionIndex(int listIndex) const;
171 void updateSelectedState(int listIndex, bool multi, bool shift);
182 int nextValidIndex(int listIndex, SkipDirection, int skip) const;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/autofill/
AutofillPopupGlue.java 43 public void suggestionSelected(int listIndex) {
44 nativeSuggestionSelected(mNativeAutofillPopup, listIndex);
98 int listIndex);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupMenuTest.cpp 78 virtual void valueChanged(unsigned listIndex, bool fireEvents = true)
80 m_selectIndex = listIndex;
83 select->optionSelectedByUser(select->listToOptionIndex(listIndex), fireEvents);
89 virtual String itemText(unsigned listIndex) const
92 str.append(String::number(listIndex));
97 virtual String itemToolTip(unsigned listIndex) const { return itemText(listIndex); }
98 virtual String itemAccessibilityText(unsigned listIndex) const { return itemText(listIndex); }
99 virtual bool itemIsEnabled(unsigned listIndex) const { return m_disabledIndexSet.find(listIndex) == m_disabledIndexSet.end();
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwAutofillManagerDelegate.java 55 public void suggestionSelected(int listIndex) {
56 nativeSuggestionSelected(mNativeAwAutofillManagerDelegate, listIndex);
  /external/chromium/chrome/browser/resources/shared/js/cr/ui/
list_item.js 69 cr.defineProperty(ListItem, 'listIndex');
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/
list_item.js 70 cr.defineProperty(ListItem, 'listIndex');
  /external/chromium_org/ui/webui/resources/js/cr/ui/
list_item.js 70 cr.defineProperty(ListItem, 'listIndex');
list.js 630 newCachedItems[newIndex].listIndex = newIndex;
789 var index = item.listIndex;
934 newItem.listIndex = currentIndex;
954 var index = item.listIndex;
974 var index = this.pinnedItem_.listIndex;
1004 listItem.listIndex = index;
    [all...]
  /external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
AutofillPopup.java 69 * @param listIndex The index of the selected Autofill suggestion.
71 public void suggestionSelected(int listIndex);
222 int listIndex = mSuggestions.indexOf(adapter.getItem(position));
223 assert listIndex > -1;
224 mAutofillCallback.suggestionSelected(listIndex);
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
AutofillTest.java 69 public void suggestionSelected(int listIndex) {
70 mListIndex = listIndex;
  /external/chromium_org/third_party/icu/source/common/
bmpset.cpp 110 int32_t listIndex=0;
114 start=list[listIndex++];
115 if(listIndex<listLength) {
116 limit=list[listIndex++];
136 start=list[listIndex++];
137 if(listIndex<listLength) {
138 limit=list[listIndex++];
182 start=list[listIndex++];
183 if(listIndex<listLength) {
184 limit=list[listIndex++]
    [all...]
  /external/icu4c/common/
bmpset.cpp 119 int32_t listIndex=0;
123 start=list[listIndex++];
124 if(listIndex<listLength) {
125 limit=list[listIndex++];
145 start=list[listIndex++];
146 if(listIndex<listLength) {
147 limit=list[listIndex++];
191 start=list[listIndex++];
192 if(listIndex<listLength) {
193 limit=list[listIndex++]
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageListUber.java 209 int listIndex = Util.indexOf(mSubList, list);
210 if (listIndex == -1) {
221 if (which == listIndex) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
configDialog.py 604 listIndex=self.listBindings.index(ANCHOR)
605 binding=self.listBindings.get(listIndex)
625 self.listBindings.select_set(listIndex)
626 self.listBindings.select_anchor(listIndex)
630 self.listBindings.delete(listIndex)
631 self.listBindings.insert(listIndex,bindName+' - '+newKeys)
632 self.listBindings.select_set(listIndex)
633 self.listBindings.select_anchor(listIndex)
636 self.listBindings.select_set(listIndex)
637 self.listBindings.select_anchor(listIndex)
    [all...]

Completed in 2101 milliseconds

1 2