Home
last modified time | relevance | path

Searched refs:isalpha (Results 1 – 25 of 189) sorted by relevance

12345678

/third_party/musl/src/ctype/
Disalpha.c2 #undef isalpha
4 int isalpha(int c) in isalpha() function
11 return isalpha(c); in __isalpha_l()
Disalnum.c5 return isalpha(c) || isdigit(c); in isalnum()
/third_party/musl/porting/liteos_a/kernel/src/ctype/
Disalpha.c2 #undef isalpha
4 int isalpha(int c) in isalpha() function
11 return isalpha(c); in __isalpha_l()
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
Disalpha.c28 int ret = isalpha('a'); in isalpha_0100()
39 int ret = isalpha('A'); in isalpha_0200()
74 int ret = isalpha((char)i); in isalpha_0500()
/third_party/musl/include/
Dctype.h11 int isalpha(int);
31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/musl/porting/uniproton/kernel/include/
Dctype.h11 int isalpha(int);
31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/musl/ndk_musl_include/
Dctype.h11 int isalpha(int);
31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dctype.h11 int isalpha(int);
31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/musl/porting/linux/user/include/
Dctype.h11 int isalpha(int);
31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/musl/porting/liteos_a/kernel/include/
Dctype.h11 int isalpha(int);
31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DTGLexer.cpp144 if (isalpha(CurChar) || CurChar == '_') in LexToken()
241 if (isalpha(NextChar) || NextChar == '_') in LexToken()
307 if (!isalpha(CurPtr[0]) && CurPtr[0] != '_') in LexVarName()
313 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in LexVarName()
325 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in LexIdentifier()
527 if (!isalpha(*CurPtr)) in LexExclaim()
531 while (isalpha(*CurPtr)) in LexExclaim()
873 if (*CurPtr != '_' && !isalpha(*CurPtr)) in prepLexMacroName()
877 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in prepLexMacroName()
/third_party/boost/libs/iostreams/example/
Ddictionary_filter.hpp24 using ::isalpha;
52 if (c == EOF || !std::isalpha((unsigned char) c)) { in do_filter()
94 if (c == EOF || !std::isalpha((unsigned char) c)) { in get()
136 if (!std::isalpha((unsigned char) c)) { in put()
/third_party/toybox/scripts/
Dmktags.c27 if (!isalpha(*line)) { in main()
48 if (!isalpha(*s) && !isdigit(*s)) *s = '_'; in main()
/third_party/boost/boost/spirit/home/support/char_encoding/
Dstandard.hpp64 isalpha(int ch) in isalpha() function
67 return std::isalpha(ch) != 0; in isalpha()
/third_party/boost/libs/config/test/
Dboost_no_stdc_namespace.ipp22 #undef isalpha
33 (void)std::isalpha(c);
/third_party/python/Lib/curses/
Dascii.py54 def isalnum(c): return isalpha(c) or isdigit(c)
55 def isalpha(c): return isupper(c) or islower(c) function
/third_party/json/test/thirdparty/imapdl/
Dfilterbr.py51 if (p == 0 or not line[p-1].isalpha()) \
52 and (p+2 == len(line) or not line[p+2].isalpha()):
/third_party/boost/libs/coroutine/example/asymmetric/
Dchaining.cpp53 else if (std::isalpha(line[pos])) in tokenize()
56 while (pos < line.length() && std::isalpha(line[pos])) in tokenize()
72 if (! token.empty() && std::isalpha(token[0])) in only_words()
/third_party/mindspore/third_party/securec/src/
Dsecinput.h129 #ifndef isalpha
130 #define isalpha(c) (isupper(c) || (islower(c))) macro
/third_party/boost/boost/date_time/local_time/
Dposix_time_zone.hpp258 while(std::isalpha(*sit)){ in calc_zone()
267 while(sit != obj_end && !std::isalpha(*sit)){ in calc_zone()
286 while(sit != obj_end && std::isalpha(*sit)){ in calc_zone()
295 while(sit != obj_end && !std::isalpha(*sit)){ in calc_zone()
/third_party/json/benchmarks/thirdparty/benchmark/tools/
Dstrip_asm.py56 if not first.isalpha() and first != '_':
78 tk[1].isalpha() and tk[1] != 'Z':
/third_party/benchmark/tools/
Dstrip_asm.py56 if not first.isalpha() and first != '_':
78 tk[1].isalpha() and tk[1] != 'Z':
/third_party/bounds_checking_function/src/
Dsecinput.h157 #ifndef isalpha
158 #define isalpha(c) (isupper(c) || (islower(c))) macro
/third_party/musl/porting/uniproton/kernel/src/ctype/
Disalnum.c5 return isalpha(c) || isdigit(c); in isalnum()
/third_party/musl/porting/liteos_m/kernel/src/ctype/
Disalnum.c5 return isalpha(c) || isdigit(c); in isalnum()

12345678