/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | bugprone-not-null-terminated-result-strlen.c | 98 strxfrm(long_destination_array_name, long_source_name, in bad_strxfrm_1() 108 strxfrm(long_destination_array_name, long_source_name, in good_strxfrm_1() 114 strxfrm(long_destination_array_name1, "long_source_name", 16); in bad_strxfrm_2() 122 strxfrm(long_destination_array_name2, "long_source_name", 17); in good_strxfrm_2()
|
D | bugprone-not-null-terminated-result-in-initialization-strlen.c | 70 strxfrm(long_destination_name, long_source_name, in bad_strxfrm() 82 strxfrm(long_destination_name, long_source_name, in good_strxfrm()
|
/external/compiler-rt/test/msan/ |
D | strxfrm.cc | 11 size_t n = strxfrm(q, p, sizeof(q)); in main()
|
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Posix/ |
D | strxfrm.c | 10 size_t n = strxfrm(q, "abcdef", sizeof(q)); in main()
|
/external/llvm-project/compiler-rt/test/msan/ |
D | strxfrm.cpp | 11 size_t n = strxfrm(q, "abcdef", sizeof(q)); in main()
|
/external/llvm-project/libcxx/include/ |
D | cstring | 37 size_t strxfrm(char* restrict s1, const char* restrict s2, size_t n); 79 using ::strxfrm;
|
/external/libcxx/include/ |
D | cstring | 38 size_t strxfrm(char* restrict s1, const char* restrict s2, size_t n); 80 using ::strxfrm;
|
/external/python/cpython3/Lib/test/ |
D | test_locale.py | 353 self.assertLess(locale.strxfrm('a'), locale.strxfrm('b')) 355 self.assertRaises(ValueError, locale.strxfrm, 'a\0') 380 self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/Inputs/bugprone-not-null-terminated-result/ |
D | not-null-terminated-result-c.h | 34 size_t strxfrm(char *dest, const char *src, size_t count);
|
/external/libcxx/test/std/strings/c.strings/ |
D | cstring.pass.cpp | 39 ASSERT_SAME_TYPE(std::size_t, decltype(std::strxfrm(cp, cpc, s))); in main()
|
/external/llvm-project/libcxx/test/std/strings/c.strings/ |
D | cstring.pass.cpp | 38 ASSERT_SAME_TYPE(std::size_t, decltype(std::strxfrm(cp, cpc, s))); in main()
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | bugprone-not-null-terminated-result.rst | 14 ``strerror_s``, ``strncmp``, ``strxfrm`` 122 ``strxfrm``
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | string_h.pass.cpp | 36 static_assert((std::is_same<decltype(strxfrm(cp, cpc, s)), size_t>::value), ""); in main()
|
/external/llvm-project/libcxx/include/support/xlocale/ |
D | __posix_l_fallback.h | 141 return ::strxfrm(dest, src, n); in strxfrm_l()
|
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
D | string_h.pass.cpp | 37 static_assert((std::is_same<decltype(strxfrm(cp, cpc, s)), size_t>::value), ""); in main()
|
/external/libcxx/include/support/xlocale/ |
D | __posix_l_fallback.h | 142 return ::strxfrm(dest, src, n); in strxfrm_l()
|
/external/python/cpython2/Modules/ |
D | _localemodule.c | 370 n2 = strxfrm(buf, s, n1) + 1; in PyLocale_strxfrm() 376 strxfrm(buf, s, n2); in PyLocale_strxfrm()
|
/external/icu/icu4c/source/test/perf/collperf/ |
D | collperf.cpp | 134 strxfrm(posix_key, data[i].posix_data, MAX_KEY_LENGTH); in posix_key_null() 830 s = strxfrm(NULL, posix_data->dataOf(i), 0); in prepareData() 833 t = strxfrm(posix_key->last(), posix_data->dataOf(i), s); in prepareData()
|
/external/icu/icu4c/source/test/perf/collationperf/ |
D | collperf.cpp | 419 strxfrm(gFileLines[line].unixSortKey, gFileLines[line].unixName, 5000); in doKeyGen() 1652 t=strxfrm((char *)buf, gFileLines[line].unixName, sizeof(buf)); in main() 1655 t = strxfrm(gFileLines[line].unixSortKey, gFileLines[line].unixName, sizeof(buf)); in main()
|
/external/python/cpython3/Doc/library/ |
D | locale.rst | 361 .. function:: strxfrm(string) 364 comparisons. For example, ``strxfrm(s1) < strxfrm(s2)`` is 449 :func:`strxfrm` of the :mod:`locale` module are affected.
|
/external/python/cpython2/Lib/ |
D | locale.py | 99 def strxfrm(s): function
|
/external/python/cpython3/Lib/ |
D | locale.py | 97 strxfrm = _strxfrm variable
|
/external/llvm/test/Transforms/InferFunctionAttrs/ |
D | no-proto.ll | 762 ; CHECK: declare void @strxfrm(...) 763 declare void @strxfrm(...)
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 489 INTERCEPTOR(SIZE_T, strxfrm, char *dest, const char *src, SIZE_T n) { in INTERCEPTOR() argument 492 SIZE_T res = REAL(strxfrm)(dest, src, n); in INTERCEPTOR() 1533 INTERCEPT_FUNCTION(strxfrm); in InitializeInterceptors()
|
/external/llvm-project/llvm/test/Transforms/InferFunctionAttrs/ |
D | no-proto.ll | 891 ; CHECK: declare void @strxfrm(...) 892 declare void @strxfrm(...)
|