/ndk/sources/android/support/src/musl-locale/ |
strncasecmp_l.c | 4 int strncasecmp_l(const char *l, const char *r, size_t n, locale_t loc) function
|
/bionic/tests/ |
strings_test.cpp | 62 TEST(STRINGS_TEST, strncasecmp_l) { 64 ASSERT_EQ(0, strncasecmp_l("hello", "HELLO", 3, l)); 65 ASSERT_EQ(0, strncasecmp_l("abcXX", "ABCYY", 3, l)); 66 ASSERT_LT(strncasecmp_l("hello1", "hello2", 6, l), 0); 67 ASSERT_GT(strncasecmp_l("hello2", "hello1", 6, l), 0);
|
/bionic/libc/include/ |
strings.h | 60 int strncasecmp_l(const char*, const char*, size_t, locale_t) __purefunc;
|
string.h | 78 int strncasecmp_l(const char*, const char*, size_t, locale_t) __purefunc;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
strings.h | 128 extern int strncasecmp_l (__const char *__s1, __const char *__s2,
|
string.h | 549 extern int strncasecmp_l (__const char *__s1, __const char *__s2,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
strings.h | 133 extern int strncasecmp_l (__const char *__s1, __const char *__s2,
|
string.h | 551 extern int strncasecmp_l (__const char *__s1, __const char *__s2,
|
/bionic/libc/bionic/ |
locale.cpp | 199 int strncasecmp_l(const char* s1, const char* s2, size_t n, locale_t) { function
|
/ndk/sources/android/support/ |
Android.mk | 85 src/musl-locale/strncasecmp_l.c \
|
/external/valgrind/shared/ |
vg_replace_strmem.c | 73 20150 STRNCASECMP_L 780 /*---------------------- strncasecmp_l ----------------------*/ 782 #define STRNCASECMP_L(soname, fnname) \ 806 STRNCASECMP_L(VG_Z_LIBC_SONAME, strncasecmp_l) 807 STRNCASECMP_L(VG_Z_LIBC_SONAME, __GI_strncasecmp_l) 808 STRNCASECMP_L(VG_Z_LIBC_SONAME, __GI___strncasecmp_l) 811 //STRNCASECMP_L(VG_Z_LIBC_SONAME, strncasecmp_l) 812 //STRNCASECMP_L(VG_Z_DYLD, strncasecmp_l [all...] |