Home
last modified time | relevance | path

Searched refs:strxfrm (Results 1 – 25 of 31) sorted by relevance

12

/external/python/cpython3/Lib/test/
Dtest_locale.py354 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/
Dcstring38 size_t strxfrm(char* restrict s1, const char* restrict s2, size_t n);
80 using ::strxfrm;
/external/compiler-rt/test/msan/
Dstrxfrm.cc11 size_t n = strxfrm(q, p, sizeof(q)); in main()
/external/libcxx/test/std/strings/c.strings/
Dcstring.pass.cpp39 ASSERT_SAME_TYPE(std::size_t, decltype(std::strxfrm(cp, cpc, s))); in main()
/external/libcxx/include/support/xlocale/
D__posix_l_fallback.h142 return ::strxfrm(dest, src, n); in strxfrm_l()
/external/libcxx/test/std/depr/depr.c.headers/
Dstring_h.pass.cpp36 static_assert((std::is_same<decltype(strxfrm(cp, cpc, s)), size_t>::value), ""); in main()
/external/python/cpython2/Modules/
D_localemodule.c370 n2 = strxfrm(buf, s, n1) + 1; in PyLocale_strxfrm()
376 strxfrm(buf, s, n2); in PyLocale_strxfrm()
/external/icu/icu4c/source/test/perf/collperf/
Dcollperf.cpp134 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/
Dlocale.rst361 .. 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/
Dcollperf.cpp420 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/
Dlocale.py99 def strxfrm(s): function
/external/python/cpython3/Lib/
Dlocale.py97 strxfrm = _strxfrm variable
/external/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll762 ; CHECK: declare void @strxfrm(...)
763 declare void @strxfrm(...)
Dannotate.ll778 ; CHECK: declare i64 @strxfrm(i8* nocapture, i8* nocapture readonly, i64) [[G0]]
779 declare i64 @strxfrm(i8*, i8*, i64)
/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc489 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/
Dno-proto.ll891 ; CHECK: declare void @strxfrm(...)
892 declare void @strxfrm(...)
Dannotate.ll913 ; CHECK: declare i64 @strxfrm(i8* nocapture, i8* nocapture readonly, i64) [[G0]]
914 declare i64 @strxfrm(i8*, i8*, i64)
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def1028 /// 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/
Dlocale.rst356 .. function:: strxfrm(string)
435 :func:`strxfrm` of the :mod:`locale` module are affected.
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def1228 /// 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/
Dsorting.rst262 * For locale aware sorting, use :func:`locale.strxfrm` for a key function or
/external/python/cpython2/Doc/howto/
Dsorting.rst275 * For locale aware sorting, use :func:`locale.strxfrm` for a key function or
/external/llvm/lib/Transforms/Utils/
DBuildLibCalls.cpp147 case LibFunc::strxfrm: in inferLibFuncAttributes()
/external/llvm/lib/Analysis/
DTargetLibraryInfo.cpp558 case LibFunc::strxfrm: in isValidProtoForLibFunc()
/external/python/cpython2/Doc/
Dglossary.rst437 used for sorting or ordering. For example, :func:`locale.strxfrm` is

12