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

  /external/webkit/Source/WebCore/inspector/front-end/
CSSCompletions.js 55 var foundIndex = this._firstIndexOfPrefix(prefix);
56 return (foundIndex === -1 ? "" : this._values[foundIndex]);
68 var foundIndex;
73 foundIndex = middleIndex;
82 if (foundIndex === undefined)
85 while (foundIndex && this._values[foundIndex - 1].indexOf(prefix) === 0)
86 foundIndex--;
88 return foundIndex;
    [all...]
TextPrompt.js 253 var foundIndex = null;
256 foundIndex = i;
259 var nextIndex = foundIndex + (reverse ? -1 : 1);
260 if (foundIndex === null || nextIndex >= completions.length)
  /external/webkit/Source/WebCore/platform/text/
AtomicStringKeyedMRUCache.h 45 size_t foundIndex = i;
46 if (foundIndex + 1 < m_cache.size()) {
47 Entry entry = m_cache[foundIndex];
48 m_cache.remove(foundIndex);
49 foundIndex = m_cache.size();
52 return m_cache[foundIndex].second;
  /external/guava/guava/src/com/google/common/collect/
SortedLists.java 56 Comparator<? super E> comparator, E key, List<? extends E> list, int foundIndex) {
57 return foundIndex;
66 Comparator<? super E> comparator, E key, List<? extends E> list, int foundIndex) {
69 int lower = foundIndex;
90 Comparator<? super E> comparator, E key, List<? extends E> list, int foundIndex) {
94 int upper = foundIndex;
116 Comparator<? super E> comparator, E key, List<? extends E> list, int foundIndex) {
117 return LAST_PRESENT.resultIndex(comparator, key, list, foundIndex) + 1;
127 Comparator<? super E> comparator, E key, List<? extends E> list, int foundIndex) {
128 return FIRST_PRESENT.resultIndex(comparator, key, list, foundIndex) - 1
    [all...]
  /external/svox/pico/lib/
picowa.c 261 picoos_uint8 foundIndex;
286 foundIndex = i;
288 foundIndex = 0;
305 PICODBG_DEBUG(("at least one entry found in lexicon %i",foundIndex));
327 head->info2 = foundIndex;
  /external/icu4c/test/intltest/
utxttest.cpp 602 int64_t foundIndex = 0;
609 foundIndex = utext_getNativeIndex(ut);
610 TEST_ASSERT(expectedIndex == foundIndex);
614 foundIndex = utext_getPreviousNativeIndex(ut);
615 TEST_ASSERT(expectedIndex == foundIndex);
627 foundIndex = UTEXT_GETNATIVEINDEX(ut);
628 TEST_ASSERT(expectedIndex == foundIndex);
644 foundIndex = utext_getNativeIndex(ut);
645 TEST_ASSERT(len == foundIndex);
657 foundIndex = utext_getNativeIndex(ut)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerChromium.cpp 148 int foundIndex = indexOfSublayer(sublayer);
149 if (foundIndex == -1)
153 m_sublayers.remove(foundIndex);
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 1330 milliseconds