OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:theIndex
(Results
1 - 3
of
3
) 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/chromium_org/third_party/icu/source/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
...]
/external/icu4c/common/
uhash.c
335
int32_t
theIndex
, startIndex;
341
startIndex =
theIndex
= (hashcode ^ 0x4000000) % hash->length;
344
tableHash = elements[
theIndex
].hashcode;
346
if ((*hash->keyComparator)(key, elements[
theIndex
].key)) {
347
return &(elements[
theIndex
]);
357
firstDeleted =
theIndex
;
366
theIndex
= (
theIndex
+ jump) % hash->length;
367
} while (
theIndex
!= startIndex);
370
theIndex
= firstDeleted; /* reset if had deleted slot *
[
all
...]
Completed in 853 milliseconds