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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
PopupMenuClient.h 35 virtual void valueChanged(unsigned listIndex, bool fireEvents = true) = 0;
36 virtual void selectionChanged(unsigned listIndex, bool fireEvents = true) = 0;
39 virtual String itemText(unsigned listIndex) const = 0;
40 virtual String itemToolTip(unsigned listIndex) const = 0;
41 virtual String itemAccessibilityText(unsigned listIndex) const = 0;
42 virtual bool itemIsEnabled(unsigned listIndex) const = 0;
43 virtual PopupMenuStyle itemStyle(unsigned listIndex) const = 0;
50 virtual bool itemIsSeparator(unsigned listIndex) const = 0;
51 virtual bool itemIsLabel(unsigned listIndex) const = 0;
52 virtual bool itemIsSelected(unsigned listIndex) const = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMenuList.h 50 void didSetSelectedIndex(int listIndex);
78 virtual void valueChanged(unsigned listIndex, bool fireOnChange = true) OVERRIDE;
81 virtual String itemText(unsigned listIndex) const OVERRIDE;
82 virtual String itemToolTip(unsigned listIndex) const OVERRIDE;
83 virtual String itemAccessibilityText(unsigned listIndex) const OVERRIDE;
84 virtual bool itemIsEnabled(unsigned listIndex) const OVERRIDE;
85 virtual PopupMenuStyle itemStyle(unsigned listIndex) const OVERRIDE;
92 virtual bool itemIsSeparator(unsigned listIndex) const OVERRIDE;
93 virtual bool itemIsLabel(unsigned listIndex) const OVERRIDE;
94 virtual bool itemIsSelected(unsigned listIndex) const OVERRIDE
    [all...]
RenderMenuList.cpp 387 void RenderMenuList::valueChanged(unsigned listIndex, bool fireOnChange)
396 select->optionSelectedByUser(select->listToOptionIndex(listIndex), fireOnChange);
399 void RenderMenuList::listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow)
401 selectElement()->listBoxSelectItem(listIndex, allowMultiplySelections, shift, fireOnChangeNow);
409 void RenderMenuList::didSetSelectedIndex(int listIndex)
411 didUpdateActiveOption(selectElement()->listToOptionIndex(listIndex));
424 int listIndex = select->optionToListIndex(optionIndex);
425 if (listIndex < 0 || listIndex >= static_cast<int>(select->listItems().size()))
431 String RenderMenuList::itemText(unsigned listIndex) cons
    [all...]
RenderListBox.cpp 426 void RenderListBox::paintItemForeground(PaintInfo& paintInfo, const LayoutPoint& paintOffset, int listIndex)
433 HTMLElement* element = listItems[renderListBoxIndexToListIndex(listIndex)];
451 if (isOptionElement && ((toHTMLOptionElement(*element).selected() && select->suggestedIndex() < 0) || listIndex == select->suggestedIndex())) {
463 LayoutRect r = itemBoundingBoxRectInternal(paintOffset, listIndex);
479 void RenderListBox::paintItemBackground(PaintInfo& paintInfo, const LayoutPoint& paintOffset, int listIndex)
482 HTMLElement* element = listItems[renderListBoxIndexToListIndex(listIndex)];
485 if (isHTMLOptionElement(*element) && ((toHTMLOptionElement(*element).selected() && selectElement()->suggestedIndex() < 0) || listIndex == selectElement()->suggestedIndex())) {
496 LayoutRect itemRect = itemBoundingBoxRectInternal(paintOffset, listIndex);
    [all...]
RenderListBox.h 151 void paintItemForeground(PaintInfo&, const LayoutPoint&, int listIndex);
152 void paintItemBackground(PaintInfo&, const LayoutPoint&, int 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 136 int listIndex = optionToListIndex(0);
137 ASSERT(listIndex >= 0);
138 if (listIndex < 0)
140 return !listIndex && toHTMLOptionElement(listItems()[listIndex])->value().isEmpty();
168 void HTMLSelectElement::listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow)
171 optionSelectedByUser(listToOptionIndex(listIndex), fireOnChangeNow, false);
173 updateSelectedState(listIndex, allowMultiplySelections, shift);
222 int listIndex = optionToListIndex(optionIndex);
223 if (listIndex < 0
    [all...]
HTMLSelectElement.h 102 void listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow = true);
106 int listToOptionIndex(int listIndex) const;
176 void updateSelectedState(int listIndex, bool multi, bool shift);
187 int nextValidIndex(int listIndex, SkipDirection, int skip) const;
  /external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
AutofillPopup.java 54 * @param listIndex The index of the selected Autofill suggestion.
56 public void suggestionSelected(int listIndex);
114 int listIndex = mSuggestions.indexOf(adapter.getItem(position));
115 assert listIndex > -1;
116 mAutofillCallback.suggestionSelected(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);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupMenuTest.cpp 82 virtual void valueChanged(unsigned listIndex, bool fireEvents = true)
84 m_selectIndex = listIndex;
87 select->optionSelectedByUser(select->listToOptionIndex(listIndex), fireEvents);
93 virtual String itemText(unsigned listIndex) const
96 str.append(String::number(listIndex));
101 virtual String itemToolTip(unsigned listIndex) const { return itemText(listIndex); }
102 virtual String itemAccessibilityText(unsigned listIndex) const { return itemText(listIndex); }
103 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/
AutofillPopupBridge.java 59 public void suggestionSelected(int listIndex) {
60 nativeSuggestionSelected(mNativeAutofillPopup, listIndex);
114 int listIndex);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwAutofillClient.java 55 public void suggestionSelected(int listIndex) {
56 nativeSuggestionSelected(mNativeAwAutofillClient, 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/icu/icu4c/source/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 69 public void suggestionSelected(int listIndex) {
70 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...]
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_mdpcomp.h 74 int listIndex;
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_mdpcomp.h 79 int listIndex;
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker.cpp 402 size_t listIndex = 0;
404 while (listIndex < listCount && fTops[listIndex] == 0) {
405 ++listIndex;
407 if (listIndex >= listCount) {
410 int closeEdgeIndex = -listIndex - 1;
422 SkPoint* ptArray = fEdges[listIndex].fPts;
423 uint8_t verb = fEdges[listIndex].fVerb;
448 listIndex + 1, curve[0]->fX, curve[0]->fY);
449 firstIndex = listIndex;
    [all...]
  /external/skia/experimental/Intersection/
EdgeWalker.cpp 402 size_t listIndex = 0;
404 while (listIndex < listCount && fTops[listIndex] == 0) {
405 ++listIndex;
407 if (listIndex >= listCount) {
410 int closeEdgeIndex = -listIndex - 1;
422 SkPoint* ptArray = fEdges[listIndex].fPts;
423 uint8_t verb = fEdges[listIndex].fVerb;
448 listIndex + 1, curve[0]->fX, curve[0]->fY);
449 firstIndex = listIndex;
    [all...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_mdpcomp.h 92 int listIndex;

Completed in 928 milliseconds

1 2