HomeSort by relevance Sort by last modified time
    Searched refs:tolower (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /bionic/libc/string/
strcasestr.c 49 c = (char)tolower((unsigned char)c);
55 } while ((char)tolower((unsigned char)sc) != c);
  /external/srec/seti/setiUtils/src/
platform_utils.c 102 for (; *str1 != '\0' && *str2 != '\0' && tolower(*str1) == tolower(*str2);
110 return tolower(*str1) < tolower(*str2)? -1 : 1;
  /bionic/libstdc++/include/
cctype 52 using ::tolower;
  /external/webkit/JavaScriptCore/wtf/
DisallowCType.h 54 #undef tolower macro
71 #define tolower tolower_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
  /ndk/build/platforms/android-5/arch-x86/usr/include/
cctype 52 using ::tolower;
ctype.h 79 int tolower(int);
153 __CTYPE_INLINE int tolower(int c) function
  /ndk/build/platforms/android-8/arch-x86/usr/include/
cctype 52 using ::tolower;
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 74 #ifdef tolower
85 using std::tolower;
  /external/stlport/stlport/stl/
_cctype.h 43 using _STLP_VENDOR_CSTD::tolower;
_ctype.h 96 char (tolower)(char __c) const { return do_tolower(__c); } function in class:ctype
97 const char* (tolower)(char* __low, const char* __high) const { function in class:ctype
202 wchar_t (tolower)(wchar_t __c) const { return do_tolower(__c); } function in class:ctype
203 const wchar_t* (tolower)(wchar_t* __low, const wchar_t* __high) const function in class:ctype
  /bionic/libc/unistd/
fnmatch.c 144 (tolower((unsigned char)c) ==
145 tolower((unsigned char)*string))))
170 test = (char)tolower((unsigned char)test);
187 c = (char)tolower((unsigned char)c);
196 c2 = (char)tolower((unsigned char)c2);
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
osRgstry_parser.c 83 #ifndef tolower
84 #define tolower(c) ( (c) | 0x20) macro
102 for( i=0; &buf[i] <= end_buf && buf[i] && str[i] && (tolower(buf[i]) == tolower(str[i])); i++ ) ;
104 if ((!str[i]) && (!((tolower(*(buf-1))>='a') && (tolower(*(buf-1))<='z'))))
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
osRgstry_parser.c 79 #ifndef tolower
80 #define tolower(c) ( (c) | 0x20) macro
98 for( i=0; &buf[i] <= end_buf && buf[i] && str[i] && (tolower(buf[i]) == tolower(str[i])); i++ ) ;
100 if ((!str[i]) && (!((tolower(*(buf-1))>='a') && (tolower(*(buf-1))<='z'))))
  /system/wlan/ti/wilink_6_1/platforms/os/linux/src/
osRgstry_parser.c 83 #ifndef tolower
84 #define tolower(c) ( (c) | 0x20) macro
102 for( i=0; &buf[i] <= end_buf && buf[i] && str[i] && (tolower(buf[i]) == tolower(str[i])); i++ ) ;
104 if ((!str[i]) && (!((tolower(*(buf-1))>='a') && (tolower(*(buf-1))<='z'))))
  /hardware/broadcom/wlan/bcm4329/src/shared/
bcmwifi.c 35 #define tolower(c) (bcm_isupper((c)) ? ((c) + 'a' - 'A') : (c)) macro
105 c = tolower(a[0]);
113 c = tolower(a[0]);
  /bionic/libc/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /external/srec/srec/ca/
voc_basi.c 125 lower[i] = tolower(label[i]);
168 lower[i] = tolower((unsigned char)label[i]);
  /ndk/build/platforms/android-3/arch-arm/usr/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /ndk/build/platforms/android-4/arch-arm/usr/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /ndk/build/platforms/android-5/arch-arm/usr/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /ndk/build/platforms/android-8/arch-arm/usr/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /bionic/libc/kernel/common/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /external/kernel-headers/original/linux/
ctype.h 51 #define tolower(c) __tolower(c) macro
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_dm.c 40 while (n-- != 0 && tolower(*s1) == tolower(*s2))
48 return tolower(*s1) - tolower(*s2);

Completed in 5181 milliseconds

1 2 3 4 5