/external/python/cpython3/Lib/test/ |
D | test_locale.py | 354 self.assertLess(locale.strxfrm('a'), locale.strxfrm('b')) 356 self.assertRaises(ValueError, locale.strxfrm, 'a\0') 381 self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
|
/external/libcxx/include/ |
D | cstring | 38 size_t strxfrm(char* restrict s1, const char* restrict s2, size_t n); 80 using ::strxfrm;
|
/external/compiler-rt/test/msan/ |
D | strxfrm.cc | 11 size_t n = strxfrm(q, p, sizeof(q)); in main()
|
/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/libcxx/include/support/xlocale/ |
D | __posix_l_fallback.h | 142 return ::strxfrm(dest, src, n); in strxfrm_l()
|
/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/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/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/icu/icu4c/source/test/perf/collationperf/ |
D | collperf.cpp | 420 t = strxfrm(gFileLines[line].unixSortKey, gFileLines[line].unixName, 5000); in doKeyGen() 1653 t=strxfrm((char *)buf, gFileLines[line].unixName, sizeof(buf)); in main() 1656 t = strxfrm(gFileLines[line].unixSortKey, gFileLines[line].unixName, sizeof(buf)); in main()
|
/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(...)
|
D | annotate.ll | 778 ; CHECK: declare i64 @strxfrm(i8* nocapture, i8* nocapture readonly, i64) [[G0]] 779 declare i64 @strxfrm(i8*, i8*, i64)
|
/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/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InferFunctionAttrs/ |
D | no-proto.ll | 891 ; CHECK: declare void @strxfrm(...) 892 declare void @strxfrm(...)
|
D | annotate.ll | 913 ; CHECK: declare i64 @strxfrm(i8* nocapture, i8* nocapture readonly, i64) [[G0]] 914 declare i64 @strxfrm(i8*, i8*, i64)
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 1028 /// size_t strxfrm(char *s1, const char *s2, size_t n); 1029 TLI_DEFINE_ENUM_INTERNAL(strxfrm) 1030 TLI_DEFINE_STRING_INTERNAL("strxfrm")
|
/external/python/cpython2/Doc/library/ |
D | locale.rst | 356 .. function:: strxfrm(string) 435 :func:`strxfrm` of the :mod:`locale` module are affected.
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 1228 /// size_t strxfrm(char *s1, const char *s2, size_t n); 1229 TLI_DEFINE_ENUM_INTERNAL(strxfrm) 1230 TLI_DEFINE_STRING_INTERNAL("strxfrm")
|
/external/python/cpython3/Doc/howto/ |
D | sorting.rst | 262 * For locale aware sorting, use :func:`locale.strxfrm` for a key function or
|
/external/python/cpython2/Doc/howto/ |
D | sorting.rst | 275 * For locale aware sorting, use :func:`locale.strxfrm` for a key function or
|
/external/llvm/lib/Transforms/Utils/ |
D | BuildLibCalls.cpp | 147 case LibFunc::strxfrm: in inferLibFuncAttributes()
|
/external/llvm/lib/Analysis/ |
D | TargetLibraryInfo.cpp | 558 case LibFunc::strxfrm: in isValidProtoForLibFunc()
|
/external/python/cpython2/Doc/ |
D | glossary.rst | 437 used for sorting or ordering. For example, :func:`locale.strxfrm` is
|