/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | strcoll.c | 22 * @tc.desc : Verify strcoll process success when fist string equal second stirng 27 int32_t ret = strcoll("aBcDeF", "aBcDeF"); in strcoll_0100() 33 * @tc.desc : Verify strcoll process success when fist string less than second stirng 38 int32_t ret = strcoll("", "AbCdEf"); in strcoll_0200() 44 * @tc.desc : Verify strcoll process success when fist string more than second stirng 49 int32_t ret = strcoll("AbCdEf", ""); in strcoll_0300() 55 * @tc.desc : Verify strcoll process success when fist string is null second stirng is null 60 int32_t ret = strcoll("", ""); in strcoll_0400()
|
/third_party/python/Lib/test/ |
H A 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') 381 self.assertLess(locale.strcoll('à', 'b'), 0) 559 self.assertRaises(TypeError, locale.strcoll, "a", None) 560 self.assertRaises(TypeError, locale.strcoll, b"a", None)
|
/third_party/icu/icu4j/perf-tests/ |
H A D | collationperf.pl | 126 Locale Data file strcoll keygen keylen strcoll keygen keylen coll keygen keylen
|
/third_party/icu/icu4c/source/test/perf/collationperf/ |
H A D | CollPerf.pl | 189 <td>strcoll</td> 216 the hardware and compiler. The strcoll operation is particularly sensitive; we 245 <td align="left"><b>strcoll</b> <i>(ICU)</i></td> 248 <td align="left"><b>strcoll</b> <i>(GLIBC)</i></td> 251 <td align="left"><b>strcoll</b> <i>(GLIBC-ICU)/ICU)</i></td>
|
H A D | collperf.cpp | 23 // Three APIs can be teste: ICU C , Unix strcoll, strxfrm and Windows LCMapString 37 "-unix Run test using Unix strxfrm, strcoll services.\n" 39 "-usekeys Run tests using sortkeys rather than strcoll\n" 40 "-strcmp Run tests using u_strcmp rather than strcoll\n" 41 "-strcmpCPO Run tests using u_strcmpCodePointOrder rather than strcoll\n" 121 UBool opt_unix = false; // Run with UNIX strcoll, strxfrm functions. 318 t = strcoll((*(Line **)a)->unixName, (*(Line **)b)->unixName); in UNIXstrcmp() 657 r = strcoll((gSortedLines[line])->unixName, (gSortedLines[guess])->unixName); in doBinarySearch() 661 fprintf(stderr, "Error %d returned from strcoll.\n", errno); in doBinarySearch()
|
/third_party/musl/src/dirent/ |
H A D | alphasort.c | 6 return strcoll((*a)->d_name, (*b)->d_name); in alphasort()
|
/third_party/musl/src/locale/ |
H A D | strcoll.c | 10 int strcoll(const char *l, const char *r) in strcoll() function
|
/third_party/musl/porting/liteos_a/user/src/locale/ |
H A D | strcoll.c | 10 int strcoll(const char *l, const char *r) in strcoll() function
|
/third_party/musl/libc-test/src/api/ |
H A D | string.c | 15 {int(*p)(const char*,const char*) = strcoll;} in f()
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | string.h | 40 int strcoll (const char *, const char *);
|
/third_party/musl/porting/linux/user/include/ |
H A D | string.h | 42 int strcoll (const char *, const char *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | string.h | 40 int strcoll (const char *, const char *);
|
/third_party/musl/include/ |
H A D | string.h | 42 int strcoll (const char *, const char *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | string.h | 40 int strcoll (const char *, const char *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | string.h | 42 int strcoll (const char *, const char *);
|
/third_party/libwebsockets/win32port/dirent/ |
H A D | dirent-win32.h | 1022 return strcoll ((*a)->d_name, (*b)->d_name); in alphasort()
|
/third_party/icu/icu4c/source/test/perf/collperf/ |
H A D | collperf.cpp | 336 QFUNC(posix_strcoll_null, strcoll, posix_data) 485 BFUNC(posix_strcoll_null, strcoll, posix_data)
|
/third_party/python/Lib/ |
H A D | locale.py | 28 "setlocale", "resetlocale", "localeconv", "strcoll", "strxfrm", 34 """ strcoll(string,string) -> int. 98 if 'strcoll' not in globals(): 99 strcoll = _strcoll variable
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_string.cpp | 554 c = strcoll(s1ALigned, s2ALigned); in BM_function_Strcoll() 559 // Similar to strcoll the main difference is its support for localization
|
/third_party/rust/crates/libc/src/windows/ |
H A D | mod.rs | 359 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; in strcoll() functions
|
/third_party/icu/tools/colprobe/ |
H A D | colprobeNew.cpp | 207 t = strcoll(compUTF8A, compUTF8B); in UNIXstrcmp()
|
/third_party/rust/crates/libc/src/solid/ |
H A D | mod.rs | 726 pub fn strcoll(arg1: *const c_char, arg2: *const c_char) -> c_int; in strcoll() functions
|
/third_party/rust/crates/libc/src/ |
H A D | wasi.rs | 560 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; in strcoll() functions
|
/third_party/rust/crates/libc/src/vxworks/ |
H A D | mod.rs | 1148 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; in strcoll() functions
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 543 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; in strcoll() functions
|