Home
last modified time | relevance | path

Searched refs:theIndex (Results 1 – 2 of 2) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xpath/functions/
DFuncTranslate.java59 int theIndex = theSecondString.indexOf(theCurrentChar); in execute() local
61 if (theIndex < 0) in execute()
68 else if (theIndex < theThirdStringLength) in execute()
73 sbuffer.append(theThirdString.charAt(theIndex)); in execute()
/external/icu/icu4c/source/common/
Duhash.cpp337 int32_t theIndex, startIndex; in _uhash_find() local
343 startIndex = theIndex = (hashcode ^ 0x4000000) % hash->length; in _uhash_find()
346 tableHash = elements[theIndex].hashcode; in _uhash_find()
348 if ((*hash->keyComparator)(key, elements[theIndex].key)) { in _uhash_find()
349 return &(elements[theIndex]); in _uhash_find()
359 firstDeleted = theIndex; in _uhash_find()
368 theIndex = (theIndex + jump) % hash->length; in _uhash_find()
369 } while (theIndex != startIndex); in _uhash_find()
372 theIndex = firstDeleted; /* reset if had deleted slot */ in _uhash_find()
382 return &(elements[theIndex]); in _uhash_find()