HomeSort by relevance Sort by last modified time
    Searched refs:_ALPHA (Results 1 - 8 of 8) sorted by null

  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/
ctype.h 71 __inline int (isalpha)(int c) { return _isctype(c, _ALPHA); }
78 __inline int (isalnum)(int c) { return _isctype(c, _ALPHA|_DIGIT); }
79 __inline int (isprint)(int c) { return _isctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); }
80 __inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); }
86 __inline int (iswalpha)(int c) { return iswctype((unsigned short)(c), _ALPHA); }
93 __inline int (iswalnum)(int c) { return iswctype((unsigned short)(c), _ALPHA|_DIGIT); }
94 __inline int (iswprint)(int c) { return iswctype((unsigned short)(c), _BLANK|_PUNCT|_ALPHA|_DIGIT); }
95 __inline int (iswgraph)(int c) { return iswctype((unsigned short)(c), _PUNCT|_ALPHA|_DIGIT); }
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/
ctype.h 71 __inline int (isalpha)(int c) { return _isctype(c, _ALPHA); }
78 __inline int (isalnum)(int c) { return _isctype(c, _ALPHA|_DIGIT); }
79 __inline int (isprint)(int c) { return _isctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); }
80 __inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); }
86 __inline int (iswalpha)(int c) { return iswctype((unsigned short)(c), _ALPHA); }
93 __inline int (iswalnum)(int c) { return iswctype((unsigned short)(c), _ALPHA|_DIGIT); }
94 __inline int (iswprint)(int c) { return iswctype((unsigned short)(c), _BLANK|_PUNCT|_ALPHA|_DIGIT); }
95 __inline int (iswgraph)(int c) { return iswctype((unsigned short)(c), _PUNCT|_ALPHA|_DIGIT); }
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/
ctype.h 71 __inline int (isalpha)(int c) { return _isctype(c, _ALPHA); }
78 __inline int (isalnum)(int c) { return _isctype(c, _ALPHA|_DIGIT); }
79 __inline int (isprint)(int c) { return _isctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); }
80 __inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); }
86 __inline int (iswalpha)(int c) { return iswctype((unsigned short)(c), _ALPHA); }
93 __inline int (iswalnum)(int c) { return iswctype((unsigned short)(c), _ALPHA|_DIGIT); }
94 __inline int (iswprint)(int c) { return iswctype((unsigned short)(c), _BLANK|_PUNCT|_ALPHA|_DIGIT); }
95 __inline int (iswgraph)(int c) { return iswctype((unsigned short)(c), _PUNCT|_ALPHA|_DIGIT); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wctype.h 102 #define _ALPHA (0x0100|_UPPER|_LOWER)
134 #define iswalpha(_c) (iswctype(_c,_ALPHA))
141 #define iswalnum(_c) (iswctype(_c,_ALPHA|_DIGIT))
142 #define iswprint(_c) (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT))
143 #define iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT))
149 __CRT_INLINE int __cdecl iswalpha(wint_t _C) {return (iswctype(_C,_ALPHA)); }
156 __CRT_INLINE int __cdecl iswalnum(wint_t _C) {return (iswctype(_C,_ALPHA|_DIGIT)); }
157 __CRT_INLINE int __cdecl iswprint(wint_t _C) {return (iswctype(_C,_BLANK|_PUNCT|_ALPHA|_DIGIT)); }
158 __CRT_INLINE int __cdecl iswgraph(wint_t _C) {return (iswctype(_C,_PUNCT|_ALPHA|_DIGIT)); }
ctype.h 95 #define _ALPHA (0x0100|_UPPER|_LOWER)
204 #define _isalpha_l(_Char,_Locale) _ischartype_l(_Char,_ALPHA,_Locale)
211 #define _isalnum_l(_Char,_Locale) _ischartype_l(_Char,_ALPHA|_DIGIT,_Locale)
212 #define _isprint_l(_Char,_Locale) _ischartype_l(_Char,_BLANK|_PUNCT|_ALPHA|_DIGIT,_Locale)
213 #define _isgraph_l(_Char,_Locale) _ischartype_l(_Char,_PUNCT|_ALPHA|_DIGIT,_Locale)
225 #define iswalpha(_c) (iswctype(_c,_ALPHA))
232 #define iswalnum(_c) (iswctype(_c,_ALPHA|_DIGIT))
233 #define iswprint(_c) (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT))
234 #define iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT))
237 #define _iswalpha_l(_c,_p) (_iswctype_l(_c,_ALPHA,_p)
    [all...]
wchar.h 217 #define _ALPHA (0x0100|_UPPER|_LOWER)
335 #define iswalpha(_c) (iswctype(_c,_ALPHA))
342 #define iswalnum(_c) (iswctype(_c,_ALPHA|_DIGIT))
343 #define iswprint(_c) (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT))
344 #define iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT))
348 #define _iswalpha_l(_c,_p) (_iswctype_l(_c,_ALPHA,_p))
355 #define _iswalnum_l(_c,_p) (_iswctype_l(_c,_ALPHA|_DIGIT,_p))
356 #define _iswprint_l(_c,_p) (_iswctype_l(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT,_p))
357 #define _iswgraph_l(_c,_p) (_iswctype_l(_c,_PUNCT|_ALPHA|_DIGIT,_p))
    [all...]
  /external/guice/extensions/persist/lib/
oro-2.0.8.jar 
  /prebuilts/tools/common/m2/repository/oro/oro/2.0.8/
oro-2.0.8.jar 

Completed in 1268 milliseconds