Home
last modified time | relevance | path

Searched refs:strcoll (Results 1 – 25 of 54) sorted by relevance

123

/third_party/musl/libc-test/src/functionalext/supplement/string/
Dstrcoll.c27 int32_t ret = strcoll("aBcDeF", "aBcDeF"); in strcoll_0100()
38 int32_t ret = strcoll("", "AbCdEf"); in strcoll_0200()
49 int32_t ret = strcoll("AbCdEf", ""); in strcoll_0300()
60 int32_t ret = strcoll("", ""); in strcoll_0400()
Dtest_src_functionalext_supplement_string.gni22 "strcoll",
/third_party/python/Lib/test/
Dtest_locale.py347 self.assertLess(locale.strcoll('a', 'b'), 0)
348 self.assertEqual(locale.strcoll('a', 'a'), 0)
349 self.assertGreater(locale.strcoll('b', 'a'), 0)
351 self.assertRaises(ValueError, locale.strcoll, 'a\0', 'a')
352 self.assertRaises(ValueError, locale.strcoll, 'a', 'a\0')
377 self.assertLess(locale.strcoll('à', 'b'), 0)
542 self.assertRaises(TypeError, locale.strcoll, "a", None)
543 self.assertRaises(TypeError, locale.strcoll, b"a", None)
/third_party/musl/src/dirent/
Dalphasort.c6 return strcoll((*a)->d_name, (*b)->d_name); in alphasort()
/third_party/musl/porting/liteos_a/user/src/locale/
Dstrcoll.c10 int strcoll(const char *l, const char *r) in strcoll() function
/third_party/musl/src/locale/
Dstrcoll.c10 int strcoll(const char *l, const char *r) in strcoll() function
/third_party/musl/libc-test/src/api/
Dstring.c15 {int(*p)(const char*,const char*) = strcoll;} in f()
/third_party/musl/porting/liteos_m/user/include/
Dstring.h40 int strcoll (const char *, const char *);
/third_party/musl/porting/linux/user/include/
Dstring.h42 int strcoll (const char *, const char *);
/third_party/musl/porting/uniproton/kernel/include/
Dstring.h40 int strcoll (const char *, const char *);
/third_party/musl/include/
Dstring.h42 int strcoll (const char *, const char *);
/third_party/musl/porting/liteos_a/kernel/include/
Dstring.h42 int strcoll (const char *, const char *);
/third_party/musl/porting/liteos_m/kernel/include/
Dstring.h40 int strcoll (const char *, const char *);
/third_party/rust/crates/libc/libc-test/semver/
Dwindows.txt294 strcoll
Dunix.txt805 strcoll
/third_party/python/Doc/library/
Dlocale.rst357 .. function:: strcoll(string1, string2)
369 equivalent to ``strcoll(s1, s2) < 0``. This function can be used
460 Locale category for sorting strings. The functions :func:`strcoll` and
513 >>> locale.strcoll('f\xe4n', 'foo') # compare a string containing an umlaut
/third_party/elfio/tests/elf_examples/
Dls.readelf235 000000619250 004a00000007 R_X86_64_JUMP_SLO 0000000000000000 strcoll + 0
345 74: 0000000000000000 0 FUNC GLOBAL DEFAULT UND strcoll@GLIBC_2.2.5 (3)
/third_party/icu/icu4c/source/test/perf/collperf/
Dcollperf.cpp336 QFUNC(posix_strcoll_null, strcoll, posix_data)
485 BFUNC(posix_strcoll_null, strcoll, posix_data)
/third_party/icu/docs/userguide/collation/
Dapi.md165 `ucol_strcoll` | `Collator::compare` | `Collator.compare` | `strcoll` | `Compar…
426 differently encoded strings using `strcoll`. In that case, converting the strings
427 first would probably be wasteful, since `strcoll` usually gives the result
/third_party/python/Lib/
Dlocale.py99 strcoll = _strcoll variable
/third_party/icu/icu4c/source/test/perf/collationperf/
Dcollperf.cpp318 t = strcoll((*(Line **)a)->unixName, (*(Line **)b)->unixName); in UNIXstrcmp()
657 … r = strcoll((gSortedLines[line])->unixName, (gSortedLines[guess])->unixName); in doBinarySearch()
/third_party/libwebsockets/win32port/dirent/
Ddirent-win32.h1022 return strcoll ((*a)->d_name, (*b)->d_name); in alphasort()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def1234 /// int strcoll(const char *s1, const char *s2);
1235 TLI_DEFINE_ENUM_INTERNAL(strcoll)
1236 TLI_DEFINE_STRING_INTERNAL("strcoll")
/third_party/rust/crates/libc/src/windows/
Dmod.rs359 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; in strcoll() function
/third_party/musl/Benchmark/musl/
Dlibc_string.cpp555 c = strcoll(s1ALigned, s2ALigned); in BM_function_Strcoll()

123