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

1 2

  /bionic/libc/stdlib/
tolower_.c 50 #undef tolower macro
52 tolower(int c) function
  /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
  /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
  /bionic/libc/kernel/common/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /development/ndk/platforms/android-3/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /development/ndk/platforms/android-3/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /external/kernel-headers/original/linux/
ctype.h 51 #define tolower(c) __tolower(c) macro
  /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'))))
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
ctype.h 79 int tolower(int);
153 __CTYPE_INLINE int tolower(int c) function
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
ctype.h 83 int tolower(int);
157 __CTYPE_INLINE int tolower(int c) function
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /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'))))
  /external/stlport/stlport/
ctype.h 63 # undef tolower macro
  /external/stlport/stlport/stl/
_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

Completed in 735 milliseconds

1 2