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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/
PopupMenuClient.h 41 virtual void valueChanged(unsigned listIndex, bool fireEvents = true) = 0;
42 virtual void selectionChanged(unsigned listIndex, bool fireEvents = true) = 0;
45 virtual String itemText(unsigned listIndex) const = 0;
46 virtual String itemLabel(unsigned listIndex) const = 0;
47 virtual String itemIcon(unsigned listIndex) const = 0;
48 virtual String itemToolTip(unsigned listIndex) const = 0;
49 virtual String itemAccessibilityText(unsigned listIndex) const = 0;
50 virtual bool itemIsEnabled(unsigned listIndex) const = 0;
51 virtual PopupMenuStyle itemStyle(unsigned listIndex) const = 0;
60 virtual bool itemIsSeparator(unsigned listIndex) const = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
AutofillPopupMenuClient.cpp 70 WebString AutofillPopupMenuClient::getSuggestion(unsigned listIndex) const
72 ASSERT_WITH_SECURITY_IMPLICATION(listIndex < m_names.size());
73 return m_names[listIndex];
76 WebString AutofillPopupMenuClient::getLabel(unsigned listIndex) const
78 ASSERT_WITH_SECURITY_IMPLICATION(listIndex < m_labels.size());
79 return m_labels[listIndex];
82 WebString AutofillPopupMenuClient::getIcon(unsigned listIndex) const
84 ASSERT_WITH_SECURITY_IMPLICATION(listIndex < m_icons.size());
85 return m_icons[listIndex];
88 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);
80 virtual void valueChanged(unsigned listIndex, bool fireOnChange = true) OVERRIDE;
83 virtual String itemText(unsigned listIndex) const OVERRIDE;
84 virtual String itemLabel(unsigned listIndex) const OVERRIDE;
85 virtual String itemIcon(unsigned listIndex) const OVERRIDE;
86 virtual String itemToolTip(unsigned listIndex) const OVERRIDE;
87 virtual String itemAccessibilityText(unsigned listIndex) const OVERRIDE;
88 virtual bool itemIsEnabled(unsigned listIndex) const OVERRIDE;
89 virtual PopupMenuStyle itemStyle(unsigned listIndex) const OVERRIDE;
98 virtual bool itemIsSeparator(unsigned listIndex) const OVERRIDE
    [all...]
RenderMenuList.cpp 346 void RenderMenuList::valueChanged(unsigned listIndex, bool fireOnChange)
355 select->optionSelectedByUser(select->listToOptionIndex(listIndex), fireOnChange);
358 void RenderMenuList::listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow)
360 selectElement()->listBoxSelectItem(listIndex, allowMultiplySelections, shift, fireOnChangeNow);
368 void RenderMenuList::didSetSelectedIndex(int listIndex)
370 didUpdateActiveOption(selectElement()->listToOptionIndex(listIndex));
383 int listIndex = select->optionToListIndex(optionIndex);
384 if (listIndex < 0 || listIndex >= static_cast<int>(select->listItems().size()))
387 ASSERT(select->listItems()[listIndex]);
    [all...]
RenderListBox.h 143 void valueChanged(unsigned listIndex);
148 void paintItemForeground(PaintInfo&, const LayoutPoint&, int listIndex);
149 void paintItemBackground(PaintInfo&, const LayoutPoint&, int listIndex);
RenderListBox.cpp 385 void RenderListBox::paintItemForeground(PaintInfo& paintInfo, const LayoutPoint& paintOffset, int listIndex)
392 HTMLElement* element = listItems[listIndex];
422 LayoutRect r = itemBoundingBoxRect(paintOffset, listIndex);
438 void RenderListBox::paintItemBackground(PaintInfo& paintInfo, const LayoutPoint& paintOffset, int listIndex)
441 HTMLElement* element = listItems[listIndex];
455 LayoutRect itemRect = itemBoundingBoxRect(paintOffset, listIndex);
618 void RenderListBox::valueChanged(unsigned listIndex)
621 element->setSelectedIndex(element->listToOptionIndex(listIndex));
  /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);
  /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);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp 146 int listIndex = optionToListIndex(0);
147 ASSERT(listIndex >= 0);
148 if (listIndex < 0)
150 return !listIndex && toHTMLOptionElement(listItems()[listIndex])->value().isEmpty();
178 void HTMLSelectElement::listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow)
181 optionSelectedByUser(listToOptionIndex(listIndex), fireOnChangeNow, false);
183 updateSelectedState(listIndex, allowMultiplySelections, shift);
228 int listIndex = optionToListIndex(optionIndex);
229 if (listIndex < 0
    [all...]
HTMLSelectElement.h 96 void listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow = true);
100 int listToOptionIndex(int listIndex) const;
168 void updateSelectedState(int listIndex, bool multi, bool shift);
179 int nextValidIndex(int listIndex, SkipDirection, int skip) const;
  /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);
  /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/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/android_webview/java/src/org/chromium/android_webview/
AwAutofillManagerDelegate.java 53 public void suggestionSelected(int listIndex) {
54 nativeSuggestionSelected(mNativeAwAutofillManagerDelegate, 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...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
AutofillTest.java 66 public void suggestionSelected(int listIndex) {
67 mListIndex = listIndex;
  /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...]
  /prebuilts/python/linux-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...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarkerController.cpp 545 for (size_t listIndex = 0; listIndex < list->size(); ++listIndex)
546 list->at(listIndex).invalidate(r);
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_mdpcomp.h 74 int listIndex;
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_mdpcomp.h 79 int listIndex;
  /hardware/qcom/display/msm8x26/libhwcomposer/
hwc_mdpcomp.h 74 int listIndex;

Completed in 909 milliseconds

1 2