HomeSort by relevance Sort by last modified time
    Searched defs:listIndex (Results 1 - 8 of 8) sorted by null

  /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/webkit/Source/WebCore/wml/
WMLSelectElement.cpp 164 int WMLSelectElement::listToOptionIndex(int listIndex) const
166 return SelectElement::listToOptionIndex(m_data, this, listIndex);
371 int listIndex = optionToListIndex(optionIndex - 1);
372 ASSERT(listIndex >= 0);
373 ASSERT(listIndex < (int) items.size());
375 if (OptionElement* optionElement = toOptionElement(items[listIndex]))
503 int listIndex = optionToListIndex((*it) - 1);
504 ASSERT(listIndex >= 0);
505 ASSERT(listIndex < (int) items.size());
507 if (OptionElement* optionElement = toOptionElement(items[listIndex])) {
    [all...]
  /hardware/qcom/display/libhwcomposer/
hwc_mdpcomp.h 74 int 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) {
  /external/webkit/Source/WebCore/html/
HTMLSelectElement.cpp 129 int listIndex = optionToListIndex(0);
130 ASSERT(listIndex >= 0);
131 if (listIndex < 0)
133 HTMLOptionElement* option = static_cast<HTMLOptionElement*>(listItems()[listIndex]);
134 return !option->disabled() && !listIndex && option->value().isEmpty();
148 void HTMLSelectElement::listBoxSelectItem(int listIndex, bool allowMultiplySelections, bool shift, bool fireOnChangeNow)
151 setSelectedIndexByUser(listToOptionIndex(listIndex), true, fireOnChangeNow);
153 updateSelectedState(m_data, this, listIndex, allowMultiplySelections, shift);
192 int listIndex = optionToListIndex(optionIndex);
193 if (listIndex < 0
    [all...]
  /external/webkit/Source/WebCore/dom/
SelectElement.cpp 78 // Returns the 1st valid item |skip| items from |listIndex| in direction |direction| if there is one.
79 // Otherwise, it returns the valid item closest to that boundary which is past |listIndex| if there is one.
80 // Otherwise, it returns |listIndex|.
82 static int nextValidIndex(const Vector<Element*>& listItems, int listIndex, SkipDirection direction, int skip)
85 int lastGoodIndex = listIndex;
87 for (listIndex += direction; listIndex >= 0 && listIndex < size; listIndex += direction) {
89 if (!listItems[listIndex]->disabled() && isOptionElement(listItems[listIndex]))
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp     [all...]
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 345 milliseconds