/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
D | CollationKey.java | 536 int rindex = 0; in merge() local 543 result[rindex++] = m_key_[index++]; in merge() 547 result[rindex++] = MERGE_SEPERATOR_; in merge() 552 result[rindex++] = source.m_key_[sourceindex++]; in merge() 562 result[rindex++] = Collation.LEVEL_SEPARATOR_BYTE; in merge() 574 System.arraycopy(m_key_, index, result, rindex, remainingLength); in merge() 575 rindex += remainingLength; in merge() 578 System.arraycopy(source.m_key_, sourceindex, result, rindex, remainingLength); in merge() 579 rindex += remainingLength; in merge() 581 result[rindex] = 0; in merge() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | uspoof_wsconf.cpp | 240 bsset->rindex = 0; in buildWSConfusableData() 278 outerSet->rindex = rtScriptSetsCount++; in buildWSConfusableData() 286 innerSet->rindex = outerSet->rindex; in buildWSConfusableData() 303 if (bSet->rindex != (uint32_t)i) { in buildWSConfusableData() 304 utrie2_set32(bSet->trie, bSet->codePoint, bSet->rindex, &status); in buildWSConfusableData() 359 uint32_t rindex = 2; in buildWSConfusableData() local 362 if (bSet->rindex < rindex) { in buildWSConfusableData() 366 U_ASSERT(rindex == bSet->rindex); in buildWSConfusableData() 367 rtScriptSets[rindex] = *bSet->sset; // Assignment of a ScriptSet just copies the bits. in buildWSConfusableData() 368 rindex++; in buildWSConfusableData() [all …]
|
D | uspoof_wsconf.h | 53 uint32_t rindex; // Index of this set in the final (runtime) variable
|
/external/clang/test/Preprocessor/ |
D | pragma_poison.c | 3 #pragma GCC poison rindex 4 rindex(some_string, 'h'); // expected-error {{attempt to use a poisoned identifier}}
|
/external/clang/test/Sema/ |
D | knr-def-call.c | 22 char *rindex(); in f4() 25 char *rindex(s, c) in rindex() function
|
D | implicit-builtin-redecl.c | 26 typedef int rindex; typedef
|
D | builtins-gnu-mode.c | 11 int rindex; variable
|
/external/valgrind/memcheck/tests/ |
D | strchr.stderr.exp2 | 10 at 0x........: rindex (vg_replace_strmem.c:...) 14 at 0x........: rindex (vg_replace_strmem.c:...)
|
D | strchr.stderr.exp | 10 at 0x........: rindex (vg_replace_strmem.c:...)
|
D | str_tester.c | 635 check (rindex ("abcd", 'z') == NULL, 1); /* Not found. */ in test_rindex() 637 check (rindex (one, 'c') == one+2, 2); /* Basic test. */ in test_rindex() 638 check (rindex (one, 'd') == one+3, 3); /* End of string. */ in test_rindex() 639 check (rindex (one, 'a') == one, 4); /* Beginning. */ in test_rindex() 640 check (rindex (one, '\0') == one+4, 5); /* Finding NUL. */ in test_rindex() 642 check (rindex (one, 'b') == one+3, 6); /* Finding last. */ in test_rindex() 644 check (rindex (one, 'b') == NULL, 7); /* Empty string. */ in test_rindex() 645 check (rindex (one, '\0') == one, 8); /* NUL in empty string. */ in test_rindex()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SpoofChecker.java | 827 bsset.rindex = 0; in buildWSConfusableData() 861 outerSet.rindex = rtScriptSetsCount++; in buildWSConfusableData() 867 innerSet.rindex = outerSet.rindex; in buildWSConfusableData() 881 if (bSet.rindex != i) { in buildWSConfusableData() 882 bSet.trie.set(bSet.codePoint, bSet.rindex); in buildWSConfusableData() 909 int rindex = 2; in buildWSConfusableData() 912 if (bSet.rindex < rindex) { in buildWSConfusableData() 916 assert (rindex == bSet.rindex); in buildWSConfusableData() 917 dest.fScriptSets[rindex] = bSet.sset; in buildWSConfusableData() 918 rindex++; in buildWSConfusableData() [all …]
|
/external/valgrind/exp-sgcheck/ |
D | h_intercepts.c | 64 STRRCHR(VG_Z_LIBC_SONAME, rindex) 67 STRRCHR(VG_Z_LD_LINUX_SO_2, rindex) 70 STRRCHR(VG_Z_DYLD, rindex)
|
/external/libvncserver/test/ |
D | tjbench.c | 175 int rindex=index2+tjRedOffset[pf]; in decomptest() local 178 int y=(int)((double)srcbuf[rindex]*0.299 in decomptest() 182 dstbuf[rindex]=abs(dstbuf[rindex]-y); in decomptest()
|
/external/chromium-trace/trace-viewer/tracing/build/ |
D | run_dev_server_tests | 98 installer_path = os.path.join(tmpdir, url[url.rindex('/') + 1:])
|
/external/libmtp/examples/ |
D | pathutils.c | 138 ptype = rindex(filename,'.'); in find_filetype()
|
/external/markdown/markdown/ |
D | __init__.py | 404 end = output.rindex('</%s>'%DOC_TAG)
|
/external/valgrind/shared/ |
D | vg_replace_strmem.c | 190 STRRCHR(VG_Z_LIBC_SONAME, rindex) 195 STRRCHR(VG_Z_LD_LINUX_SO_2, rindex)
|
/external/ltrace/etc/ |
D | libc.so.conf | 303 string rindex(string,char);
|
/external/ltrace/ |
D | ltrace-elf.c | 1217 const char *soname = rindex(lib->pathname, '/'); in read_module()
|
/external/valgrind/drd/tests/ |
D | tsan_unittest.cpp | 3420 CHECK(rindex(str, 'X') == str+2); in WorkerX() 3421 CHECK(rindex(str, 'x') == str+3); in WorkerX() 3422 CHECK(rindex(str, 'Y') == NULL); in WorkerX()
|
/external/llvm/patches/ |
D | 0002-Add-basic-Android-configuration.patch | 548 +/* Define to 1 if you have the `rindex' function. */ 1513 +/* Define to 1 if you have the `rindex' function. */
|
/external/clang/include/clang/Basic/ |
D | Builtins.def | 784 LIBBUILTIN(rindex, "c*cC*i", "f", "strings.h", ALL_GNU_LANGUAGES)
|
/external/libmtp/ |
D | ChangeLog | 224 * examples/pathutils.c: dito, plus rindex() does not exist under 347 * src/libmtp.c: dito. Replaced "rindex" with "strrchr"
|
/external/compiler-rt/lib/dfsan/ |
D | libc_ubuntu1404_abilist.txt | 2758 fun:rindex=uninstrumented
|