OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iswlower_l
(Results
1 - 9
of
9
) sorted by null
/ndk/sources/cxx-stl/llvm-libc++/include/support/android/
wctype.h
30
int
iswlower_l
(wint_t, locale_t);
/ndk/sources/cxx-stl/llvm-libc++/include/support/win32/
locale_win32.h
82
#define
iswlower_l
_iswlower_l
macro
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
wctype.h
253
extern int
iswlower_l
(wint_t __wc, __locale_t __locale) __THROW;
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
wctype.h
253
extern int
iswlower_l
(wint_t __wc, __locale_t __locale) __THROW;
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
wctype.h
253
extern int
iswlower_l
(wint_t __wc, __locale_t __locale) __THROW;
/ndk/sources/cxx-stl/llvm-libc++/include/support/solaris/
xlocale.h
77
int
iswlower_l
(wchar_t,locale_t);
/external/stlport/src/c_locale_glibc/
c_locale_glibc2.c
321
if ((__mask & _Locale_LOWER) != 0 &&
iswlower_l
(wc, (locale_t)__loc))
/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/
c_locale_glibc2.c
321
if ((__mask & _Locale_LOWER) != 0 &&
iswlower_l
(wc, (locale_t)__loc))
/ndk/sources/cxx-stl/llvm-libc++/src/
locale.cpp
788
return (isascii(c) &&
iswlower_l
(c, __cloc())) ? c-L'a'+L'A' : c;
1112
if (m & lower) result |= (
iswlower_l
(c, __l) != 0);
1140
if (
iswlower_l
(*low, __l))
1168
if (m & lower &&
iswlower_l
(*low, __l)) break;
[
all
...]
Completed in 905 milliseconds