HomeSort by relevance Sort by last modified time
    Searched defs:currentIndex (Results 1 - 25 of 42) sorted by null

1 2

  /external/webkit/Source/WebKit2/Shared/
SessionState.h 41 SessionState(const BackForwardListItemVector&, uint32_t currentIndex);
44 uint32_t currentIndex() const { return m_currentIndex; }
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 61 protected int currentIndex;
87 this.currentIndex = findNext(-1);
130 return (this.currentIndex >= 0);
144 final int current = this.currentIndex;
149 this.currentIndex = findNext(current);
BasicListHeaderIterator.java 61 protected int currentIndex;
94 this.currentIndex = findNext(-1);
143 return (this.currentIndex >= 0);
157 final int current = this.currentIndex;
163 this.currentIndex = findNext(current);
194 this.currentIndex--; // adjust for the removed element
  /external/icu4c/common/unicode/
normlzr.h 752 // of the source in [currentIndex..nextIndex[ .
753 int32_t currentIndex, nextIndex;
  /external/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.h 73 uint32_t currentIndex() { return m_current; }
  /external/skia/src/pdf/
SkPDFCatalog.cpp 74 uint32_t currentIndex = pos;
75 if (fCatalog[currentIndex].fObjNumAssigned)
76 return currentIndex + 1;
83 if (fCatalog[currentIndex].fOnFirstPage) {
94 if (objNum - 1 != currentIndex)
95 SkTSwap(fCatalog[objNum - 1], fCatalog[currentIndex]);
  /external/webkit/Source/WebCore/platform/graphics/android/
TexturesGenerator.cpp 141 int currentIndex = mRequestedOperations.size() - 1;
156 currentIndex = i;
159 mRequestedOperations.remove(currentIndex);
  /external/webkit/Source/WebKit2/UIProcess/cf/
WebBackForwardListCF.cpp 60 int currentIndex = m_current;
65 if (i <= static_cast<size_t>(currentIndex))
66 currentIndex--;
81 RetainPtr<CFNumberRef> currentIndexNumber(AdoptCF, CFNumberCreate(0, kCFNumberIntType, &currentIndex));
97 CFIndex currentIndex;
98 if (!CFNumberGetValue(cfIndex, kCFNumberCFIndexType, &currentIndex)) {
110 if (currentIndex != static_cast<CFIndex>(NoCurrentItemIndex) && currentIndex >= size) {
111 LOG(SessionState, "WebBackForwardList dictionary representation contains an invalid current index (%ld) for the number of entries (%ld)", currentIndex, size);
115 if (currentIndex == static_cast<CFIndex>(NoCurrentItemIndex) && size)
    [all...]
  /external/collada/src/dae/
daeUtils.cpp 69 size_t currentIndex = 0, nextTokenIndex = 0;
70 while (currentIndex < s.length() &&
71 (nextTokenIndex = s.find_first_of(separators, currentIndex)) != string::npos) {
72 if ((nextTokenIndex - currentIndex) > 0)
73 tokens.push_back(s.substr(currentIndex, nextTokenIndex-currentIndex));
76 currentIndex = nextTokenIndex+1;
79 if (currentIndex < s.length())
80 tokens.push_back(s.substr(currentIndex, s.length()-currentIndex));
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLFormCollection.cpp 82 unsigned currentIndex = info()->position;
87 if (index == currentIndex) {
94 currentIndex++;
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
QtFallbackWebPopup.cpp 183 TBrCtlSelectOptionData data(*itemStr, i == currentIndex(), false, itemIsEnabled(i));
197 newIndex = currentIndex();
202 if (currentIndex() != newIndex && newIndex >= 0)
233 int currentIndex = -1;
252 currentIndex = i;
257 if (currentIndex >= 0)
258 m_combo->setCurrentIndex(currentIndex);
  /external/webkit/Tools/DumpRenderTree/chromium/
TestNavigationController.cpp 97 int currentIndex = currentEntryIndex();
101 if (currentIndex == -1)
106 m_pendingEntryIndex = currentIndex;
TestShell.cpp 427 int currentIndex = navigationController.lastCommittedEntryIndex();
433 result.append(dumpHistoryItem(historyItem, 8, index == currentIndex));
WebViewHost.cpp 523 int currentIndex =navigationController()->lastCommittedEntryIndex();
524 return navigationController()->entryCount() - currentIndex - 1;
    [all...]
  /external/icu4c/common/
ulist.c 30 int32_t currentIndex;
52 newList->currentIndex = -1;
66 list->currentIndex = 0;
118 list->currentIndex++;
155 list->currentIndex++;
171 list->currentIndex = 0;
  /external/proguard/src/proguard/
WordReader.java 44 private int currentIndex;
134 currentIndex < currentLineLength &&
135 Character.isWhitespace(currentLine.charAt(currentIndex)))
137 currentIndex++;
141 while (currentLine == null || currentIndex == currentLineLength)
167 currentIndex = 0;
168 while (currentIndex < currentLineLength &&
169 Character.isWhitespace(currentLine.charAt(currentIndex)))
171 currentIndex++;
176 int startIndex = currentIndex;
    [all...]
  /external/icu4c/tools/gensprep/
store.c 154 static int16_t currentIndex = 0; /* the current index into the data trie */
271 indexes[_SPREP_NORM_CORRECTNS_LAST_UNI_VERSION+mappingLength] = currentIndex;
276 limitIndex = currentIndex;
284 trieWord = currentIndex << 2;
318 if(currentIndex+value->length+1 > _SPREP_MAX_INDEX_VALUE){
319 fprintf(stderr, "Too many entries in the mapping table %i. Maximum allowed is %i\n", currentIndex+value->length, _SPREP_MAX_INDEX_VALUE);
324 if(currentIndex+value->length+1 <= mappingDataCapacity){
328 mappingData[currentIndex++] = (uint16_t) mappingLength;
331 uprv_memmove(mappingData+currentIndex, value->mapping, value->length*U_SIZEOF_UCHAR);
332 currentIndex += value->length
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
AreaCodeMap.java 149 int currentIndex = numOfEntries - 1;
157 currentIndex = binarySearch(0, currentIndex, phonePrefix);
158 if (currentIndex < 0) {
161 int currentPrefix = areaCodeMapStorage.getPrefix(currentIndex);
163 return areaCodeMapStorage.getDescription(currentIndex);
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.cpp 530 int currentIndex;
531 source >> count >> currentIndex;
545 static_cast<WebCore::BackForwardListImpl*>(history.d->lst)->page()->mainFrame()->loader()->history()->setCurrentItem(history.d->lst->entries()[currentIndex].get());
546 history.goToItem(history.itemAt(currentIndex));
  /libcore/luni/src/main/java/java/util/
PriorityQueue.java 275 private int currentIndex = -1;
280 return currentIndex < size - 1;
288 return elements[++currentIndex];
296 removeAt(currentIndex--);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 426 int currentIndex = m_next-1;
428 if((currentIndex >= 0) && (currentIndex < vec.size()))
429 return vec.elementAt(currentIndex);
  /external/webkit/Source/JavaScriptCore/jit/
JITOpcodes.cpp 663 unsigned currentIndex = m_globalResolveInfoIndex++;
664 void* structureAddress = &(m_codeBlock->globalResolveInfo(currentIndex).structure);
665 void* offsetAddr = &(m_codeBlock->globalResolveInfo(currentIndex).offset);
685 unsigned currentIndex = m_globalResolveInfoIndex++;
690 stubCall.addArgument(Imm32(currentIndex));
    [all...]
JITOpcodes32_64.cpp     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 462 int currentIndex = mCurrentIndex;
463 MediaItem item = mData[currentIndex % DATA_CACHE_SIZE];
474 task = startTaskIfNeeded(currentIndex + offset, bit);
PhotoPage.java 435 int currentIndex = mModel.getCurrentIndex();
445 data.putInt(SlideshowPage.KEY_PHOTO_INDEX, currentIndex);
465 showDetails(currentIndex);

Completed in 1279 milliseconds

1 2