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

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncTranslate.java 59 int theIndex = theSecondString.indexOf(theCurrentChar);
61 if (theIndex < 0)
68 else if (theIndex < theThirdStringLength)
73 sbuffer.append(theThirdString.charAt(theIndex));
  /external/icu4c/common/
uhash.c 334 int32_t theIndex, startIndex;
340 startIndex = theIndex = (hashcode ^ 0x4000000) % hash->length;
343 tableHash = elements[theIndex].hashcode;
345 if ((*hash->keyComparator)(key, elements[theIndex].key)) {
346 return &(elements[theIndex]);
356 firstDeleted = theIndex;
365 theIndex = (theIndex + jump) % hash->length;
366 } while (theIndex != startIndex);
369 theIndex = firstDeleted; /* reset if had deleted slot *
    [all...]

Completed in 71 milliseconds