/third_party/musl/libc-test/src/functionalext/supplement/string/ |
D | strcoll.c | 27 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()
|
D | test_src_functionalext_supplement_string.gni | 22 "strcoll",
|
/third_party/python/Lib/test/ |
D | test_locale.py | 347 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/ |
D | alphasort.c | 6 return strcoll((*a)->d_name, (*b)->d_name); in alphasort()
|
/third_party/musl/porting/liteos_a/user/src/locale/ |
D | strcoll.c | 10 int strcoll(const char *l, const char *r) in strcoll() function
|
/third_party/musl/src/locale/ |
D | strcoll.c | 10 int strcoll(const char *l, const char *r) in strcoll() function
|
/third_party/musl/libc-test/src/api/ |
D | string.c | 15 {int(*p)(const char*,const char*) = strcoll;} in f()
|
/third_party/musl/porting/liteos_m/user/include/ |
D | string.h | 40 int strcoll (const char *, const char *);
|
/third_party/musl/porting/linux/user/include/ |
D | string.h | 42 int strcoll (const char *, const char *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | string.h | 40 int strcoll (const char *, const char *);
|
/third_party/musl/include/ |
D | string.h | 42 int strcoll (const char *, const char *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | string.h | 42 int strcoll (const char *, const char *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | string.h | 40 int strcoll (const char *, const char *);
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | windows.txt | 294 strcoll
|
D | unix.txt | 805 strcoll
|
/third_party/python/Doc/library/ |
D | locale.rst | 357 .. 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/ |
D | ls.readelf | 235 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/ |
D | collperf.cpp | 336 QFUNC(posix_strcoll_null, strcoll, posix_data) 485 BFUNC(posix_strcoll_null, strcoll, posix_data)
|
/third_party/icu/docs/userguide/collation/ |
D | api.md | 165 `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/ |
D | locale.py | 99 strcoll = _strcoll variable
|
/third_party/icu/icu4c/source/test/perf/collationperf/ |
D | collperf.cpp | 318 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/ |
D | dirent-win32.h | 1022 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/ |
D | TargetLibraryInfo.def | 1234 /// 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/ |
D | mod.rs | 359 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; in strcoll() function
|
/third_party/musl/Benchmark/musl/ |
D | libc_string.cpp | 555 c = strcoll(s1ALigned, s2ALigned); in BM_function_Strcoll()
|