OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isalpha
(Results
51 - 75
of
367
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/sources/cxx-stl/stlport/stlport/
ctype.h
56
# undef
isalpha
macro
71
__inline int (
isalpha
)(int c) { return _isctype(c, _ALPHA); }
function
locale
71
#undef
isalpha
103
inline bool
isalpha
(_CharT c, const locale& loc)
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/
ctype.h
56
# undef
isalpha
macro
71
__inline int (
isalpha
)(int c) { return _isctype(c, _ALPHA); }
function
locale
71
#undef
isalpha
103
inline bool
isalpha
(_CharT c, const locale& loc)
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/
ctype.h
56
# undef
isalpha
macro
71
__inline int (
isalpha
)(int c) { return _isctype(c, _ALPHA); }
function
locale
71
#undef
isalpha
103
inline bool
isalpha
(_CharT c, const locale& loc)
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/
ctype.h
56
# undef
isalpha
macro
71
__inline int (
isalpha
)(int c) { return _isctype(c, _ALPHA); }
function
locale
71
#undef
isalpha
103
inline bool
isalpha
(_CharT c, const locale& loc)
/system/core/sh/
syntax.h
73
#define is_alpha(c) (((char)(c)) != UPEOF && ((c) < CTL_FIRST || (c) > CTL_LAST) &&
isalpha
((unsigned char)(c)))
74
#define is_name(c) (((char)(c)) != UPEOF && ((c) < CTL_FIRST || (c) > CTL_LAST) && ((c) == '_' ||
isalpha
((unsigned char)(c))))
/bionic/libstdc++/include/
cctype
44
using ::
isalpha
;
/external/kernel-headers/original/linux/
ctype.h
23
#define
isalpha
(c) ((__ismask(c)&(_U|_L)) != 0)
macro
/external/stlport/stlport/using/
locale
19
using _STLP_NEW_IO_NAMESPACE::
isalpha
;
/ndk/sources/cxx-stl/gabi++/include/
cctype
44
using ::
isalpha
;
/ndk/sources/cxx-stl/stlport/stlport/using/
locale
19
using _STLP_NEW_IO_NAMESPACE::
isalpha
;
/ndk/sources/cxx-stl/system/include/
cctype
44
using ::
isalpha
;
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
cctype
42
using ::
isalpha
;
/prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
cctype
42
using ::
isalpha
;
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/using/
locale
19
using _STLP_NEW_IO_NAMESPACE::
isalpha
;
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/system/include/
cctype
44
using ::
isalpha
;
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/using/
locale
19
using _STLP_NEW_IO_NAMESPACE::
isalpha
;
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/system/include/
cctype
44
using ::
isalpha
;
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gabi++/include/
cctype
44
using ::
isalpha
;
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/using/
locale
19
using _STLP_NEW_IO_NAMESPACE::
isalpha
;
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/system/include/
cctype
44
using ::
isalpha
;
/external/llvm/lib/TableGen/
TGLexer.cpp
97
if (
isalpha
(CurChar) || CurChar == '_')
171
if (
isalpha
(NextChar) || NextChar == '_')
237
if (!
isalpha
(CurPtr[0]) && CurPtr[0] != '_')
243
while (
isalpha
(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
256
while (
isalpha
(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
451
if (!
isalpha
(*CurPtr))
455
while (
isalpha
(*CurPtr))
Completed in 335 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>