HomeSort by relevance Sort by last modified time
    Searched full:towlower (Results 1 - 25 of 494) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/android/support/src/musl-ctype/
iswupper.c 5 return towlower(wc) != wc;
wctrans.c 14 if (trans == (wctrans_t)2) return towlower(wc);
  /ndk/sources/android/support/src/musl-locale/
towlower_l.c 6 return towlower(c);
  /external/libcxx/include/
cwctype 44 wint_t towlower(wint_t wc);
179 #ifdef towlower
180 inline _LIBCPP_INLINE_VISIBILITY wint_t __libcpp_towlower(wint_t __wc) {return towlower(__wc);}
181 #undef towlower
182 inline _LIBCPP_INLINE_VISIBILITY wint_t towlower(wint_t __wc) {return __libcpp_towlower(__wc);}
183 #else // towlower
184 using ::towlower;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cwctype 44 wint_t towlower(wint_t wc);
179 #ifdef towlower
180 inline _LIBCPP_INLINE_VISIBILITY wint_t __libcpp_towlower(wint_t __wc) {return towlower(__wc);}
181 #undef towlower
182 inline _LIBCPP_INLINE_VISIBILITY wint_t towlower(wint_t __wc) {return __libcpp_towlower(__wc);}
183 #else // towlower
184 using ::towlower;
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
cwctype 44 wint_t towlower(wint_t wc);
179 #ifdef towlower
180 inline _LIBCPP_INLINE_VISIBILITY wint_t __libcpp_towlower(wint_t __wc) {return towlower(__wc);}
181 #undef towlower
182 inline _LIBCPP_INLINE_VISIBILITY wint_t towlower(wint_t __wc) {return __libcpp_towlower(__wc);}
183 #else // towlower
184 using ::towlower;
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcscasecmp.c 39 c1 = towlower(*s1);
40 c2 = towlower(*s2);
wcsncasecmp.c 41 c1 = towlower(*s1);
42 c2 = towlower(*s2);
  /external/libcxx/include/support/solaris/
wchar.h 22 #define towlower sun_towlower macro
42 #undef towlower macro
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
wchar.h 22 #define towlower sun_towlower macro
42 #undef towlower macro
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
wchar.h 22 #define towlower sun_towlower macro
42 #undef towlower macro
  /external/libcxx/test/std/depr/depr.c.headers/
wctype_h.pass.cpp 75 #ifdef towlower
76 #error towlower defined
110 static_assert((std::is_same<decltype(towlower(w)), wint_t>::value), "");
  /external/libcxx/test/std/strings/c.strings/
cwctype.pass.cpp 75 #ifdef towlower
76 #error towlower defined
110 static_assert((std::is_same<decltype(std::towlower(w)), std::wint_t>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
wctype_h.pass.cpp 75 #ifdef towlower
76 #error towlower defined
110 static_assert((std::is_same<decltype(towlower(w)), wint_t>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
cwctype.pass.cpp 75 #ifdef towlower
76 #error towlower defined
110 static_assert((std::is_same<decltype(std::towlower(w)), std::wint_t>::value), "");
  /external/bison/m4/
wctype_h.m4 83 AC_CHECK_FUNCS([towlower])
87 AC_CHECK_DECLS([towlower],,,
101 dnl On Minix 3.1.8, the system's <wctype.h> declares towlower() and
113 dnl Redefine towlower, towupper in <wctype.h>.
  /external/bison/lib/
wctype.in.h 24 * iswctype, towctrans, towlower, towupper, wctrans, wctype,
129 # undef towlower macro
151 # define towlower rpl_towlower macro
297 towlower
332 The functions towlower and towupper are implemented in the MSVCRT library
347 return (wint_t) (wchar_t) towlower (wc);
350 # define towlower rpl_towlower macro
453 _GL_CXXALIAS_RPL (towlower, wint_t, (wint_t wc));
456 _GL_CXXALIAS_SYS (towlower, wint_t, (wint_t wc));
459 _GL_CXXALIASWARN (towlower); variable
    [all...]
  /bionic/libc/bionic/
wctype.cpp 85 wint_t towlower(wint_t wc) { return tolower(wc); } function
89 int towlower_l(int c, locale_t) { return towlower(c); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
cwctype 73 #undef towlower
102 using ::towlower;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
cwctype 73 #undef towlower
102 using ::towlower;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
cwctype 73 #undef towlower
102 using ::towlower;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
cwctype 73 #undef towlower
102 using ::towlower;
  /ndk/sources/android/support/src/
wchar_support.c 46 wchar_t wc1 = towlower(s1[n]);
47 wchar_t wc2 = towlower(s2[n]);
130 wchar_t wc1 = towlower(s1[i]);
131 wchar_t wc2 = towlower(s2[i]);
  /external/bison/darwin-lib/
wctype.h 25 * iswctype, towctrans, towlower, towupper, wctrans, wctype,
431 # undef towlower macro
453 # define towlower rpl_towlower
599 towlower function
634 The functions towlower and towupper are implemented in the MSVCRT library
649 return (wint_t) (wchar_t) towlower (wc);
652 # define towlower rpl_towlower macro
755 _GL_CXXALIAS_RPL (towlower, wint_t, (wint_t wc));
758 _GL_CXXALIAS_SYS (towlower, wint_t, (wint_t wc));
761 _GL_CXXALIASWARN (towlower); variable
    [all...]
  /external/bison/linux-lib/
wctype.h 25 * iswctype, towctrans, towlower, towupper, wctrans, wctype,
431 # undef towlower macro
453 # define towlower rpl_towlower
599 towlower function
634 The functions towlower and towupper are implemented in the MSVCRT library
649 return (wint_t) (wchar_t) towlower (wc);
652 # define towlower rpl_towlower macro
755 _GL_CXXALIAS_RPL (towlower, wint_t, (wint_t wc));
758 _GL_CXXALIAS_SYS (towlower, wint_t, (wint_t wc));
761 _GL_CXXALIASWARN (towlower); variable
    [all...]

Completed in 2208 milliseconds

1 2 3 4 5 6 7 8 91011>>