Home
last modified time | relevance | path

Searched refs:strcoll (Results 1 - 25 of 27) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/string/
H A Dstrcoll.c22 * @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 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')
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 Dcollationperf.pl126 Locale Data file strcoll keygen keylen strcoll keygen keylen coll keygen keylen
/third_party/icu/icu4c/source/test/perf/collationperf/
H A DCollPerf.pl189 <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 Dcollperf.cpp23 // 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 Dalphasort.c6 return strcoll((*a)->d_name, (*b)->d_name); in alphasort()
/third_party/musl/src/locale/
H A Dstrcoll.c10 int strcoll(const char *l, const char *r) in strcoll() function
/third_party/musl/porting/liteos_a/user/src/locale/
H A Dstrcoll.c10 int strcoll(const char *l, const char *r) in strcoll() function
/third_party/musl/libc-test/src/api/
H A Dstring.c15 {int(*p)(const char*,const char*) = strcoll;} in f()
/third_party/musl/porting/liteos_m/user/include/
H A Dstring.h40 int strcoll (const char *, const char *);
/third_party/musl/porting/linux/user/include/
H A Dstring.h42 int strcoll (const char *, const char *);
/third_party/musl/porting/uniproton/kernel/include/
H A Dstring.h40 int strcoll (const char *, const char *);
/third_party/musl/include/
H A Dstring.h42 int strcoll (const char *, const char *);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dstring.h40 int strcoll (const char *, const char *);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstring.h42 int strcoll (const char *, const char *);
/third_party/libwebsockets/win32port/dirent/
H A Ddirent-win32.h1022 return strcoll ((*a)->d_name, (*b)->d_name); in alphasort()
/third_party/icu/icu4c/source/test/perf/collperf/
H A Dcollperf.cpp336 QFUNC(posix_strcoll_null, strcoll, posix_data)
485 BFUNC(posix_strcoll_null, strcoll, posix_data)
/third_party/python/Lib/
H A Dlocale.py28 "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 Dlibc_string.cpp554 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 Dmod.rs359 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; in strcoll() functions
/third_party/icu/tools/colprobe/
H A DcolprobeNew.cpp207 t = strcoll(compUTF8A, compUTF8B); in UNIXstrcmp()
/third_party/rust/crates/libc/src/solid/
H A Dmod.rs726 pub fn strcoll(arg1: *const c_char, arg2: *const c_char) -> c_int; in strcoll() functions
/third_party/rust/crates/libc/src/
H A Dwasi.rs560 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 Dmod.rs1148 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 Dmod.rs543 pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; in strcoll() functions

Completed in 29 milliseconds

12