/external/icu4c/common/ |
uvector.cpp | 498 UHashTok tok2 = *static_cast<const UHashTok *>(right); local 499 int32_t result = (*compare)(tok1, tok2); 511 const UHashTok *tok2 = static_cast<const UHashTok *>(right); local 512 int32_t result = tok1->integer < tok2->integer? -1 : 513 tok1->integer == tok2->integer? 0 : 1;
|
uvector.h | 24 * @param tok2 A token (object or integer) 25 * @return 0 if the two tokens are equal, -1 if tok1 is < tok2, or 26 * +1 if tok1 is > tok2. 29 UHashTok tok2);
|
/external/oprofile/daemon/ |
opd_ibs.c | 376 char * tmp, * ptr, * tok1, * tok2 = NULL; local 392 && (tok1 = strtok_r(ptr, ",", &tok2)) != NULL) { 441 char * tmp, * tok1, * tok2 = NULL, *end = NULL; local 446 tok1 = strtok_r(tmp, ":", &tok2); 524 char * tmp, * ptr, * tok1, * tok2 = NULL; local 540 tok1 = strtok_r(ptr, "|", &tok2); 619 tok1 = strtok_r(NULL, "|", &tok2);
|
/external/e2fsprogs/e2fsck/ |
dict.c | 1291 char *tok1, *tok2, *val; local 1322 if (tokenize(in+1, &tok1, &tok2, (char **) 0) != 2) { 1327 val = dupstring(tok2); 1357 char *tok1, *tok2, *val; local [all...] |
/bionic/libc/kernel/tools/ |
cpp.py | [all...] |