/third_party/musl/src/ctype/ |
D | isalpha.c | 2 #undef isalpha 4 int isalpha(int c) in isalpha() function 11 return isalpha(c); in __isalpha_l()
|
D | isalnum.c | 5 return isalpha(c) || isdigit(c); in isalnum()
|
/third_party/musl/porting/liteos_a/kernel/src/ctype/ |
D | isalpha.c | 2 #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/ |
D | isalpha.c | 28 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/ |
D | ctype.h | 11 int isalpha(int); 31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | ctype.h | 11 int isalpha(int); 31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
|
/third_party/musl/ndk_musl_include/ |
D | ctype.h | 11 int isalpha(int); 31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | ctype.h | 11 int isalpha(int); 31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
|
/third_party/musl/porting/linux/user/include/ |
D | ctype.h | 11 int isalpha(int); 31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | ctype.h | 11 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/ |
D | TGLexer.cpp | 144 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/ |
D | dictionary_filter.hpp | 24 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/ |
D | mktags.c | 27 if (!isalpha(*line)) { in main() 48 if (!isalpha(*s) && !isdigit(*s)) *s = '_'; in main()
|
/third_party/boost/boost/spirit/home/support/char_encoding/ |
D | standard.hpp | 64 isalpha(int ch) in isalpha() function 67 return std::isalpha(ch) != 0; in isalpha()
|
/third_party/boost/libs/config/test/ |
D | boost_no_stdc_namespace.ipp | 22 #undef isalpha 33 (void)std::isalpha(c);
|
/third_party/python/Lib/curses/ |
D | ascii.py | 54 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/ |
D | filterbr.py | 51 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/ |
D | chaining.cpp | 53 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/ |
D | secinput.h | 129 #ifndef isalpha 130 #define isalpha(c) (isupper(c) || (islower(c))) macro
|
/third_party/boost/boost/date_time/local_time/ |
D | posix_time_zone.hpp | 258 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/ |
D | strip_asm.py | 56 if not first.isalpha() and first != '_': 78 tk[1].isalpha() and tk[1] != 'Z':
|
/third_party/benchmark/tools/ |
D | strip_asm.py | 56 if not first.isalpha() and first != '_': 78 tk[1].isalpha() and tk[1] != 'Z':
|
/third_party/bounds_checking_function/src/ |
D | secinput.h | 157 #ifndef isalpha 158 #define isalpha(c) (isupper(c) || (islower(c))) macro
|
/third_party/musl/porting/uniproton/kernel/src/ctype/ |
D | isalnum.c | 5 return isalpha(c) || isdigit(c); in isalnum()
|
/third_party/musl/porting/liteos_m/kernel/src/ctype/ |
D | isalnum.c | 5 return isalpha(c) || isdigit(c); in isalnum()
|