Home
last modified time | relevance | path

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

1234567891011

/external/libcxx/test/std/localization/locales/locale.convenience/classification/
Disalpha.pass.cpp20 assert(!std::isalpha(' ', l)); in main()
21 assert(!std::isalpha('<', l)); in main()
22 assert(!std::isalpha('\x8', l)); in main()
23 assert( std::isalpha('A', l)); in main()
24 assert( std::isalpha('a', l)); in main()
25 assert( std::isalpha('z', l)); in main()
26 assert(!std::isalpha('3', l)); in main()
27 assert(!std::isalpha('.', l)); in main()
28 assert( std::isalpha('f', l)); in main()
29 assert(!std::isalpha('9', l)); in main()
[all …]
/external/libcxx/test/std/strings/c.strings/
Dcctype.pass.cpp22 #ifdef isalpha
23 #error isalpha defined
78 ASSERT_SAME_TYPE(int, decltype(std::isalpha(0))); in main()
93 assert( std::isalpha('a')); in main()
/external/libcxx/test/std/depr/depr.c.headers/
Dctype_h.pass.cpp20 #ifdef isalpha
21 #error isalpha defined
75 static_assert((std::is_same<decltype(isalpha(0)), int>::value), ""); in main()
90 assert(isalpha('a')); in main()
/external/python/cpython2/Tools/pybench/
DStrings.py476 s.isalpha()
484 s.isalpha()
492 s.isalpha()
500 s.isalpha()
508 s.isalpha()
516 s.isalpha()
524 s.isalpha()
532 s.isalpha()
540 s.isalpha()
548 s.isalpha()
DUnicode.py397 s.isalpha()
407 s.isalpha()
417 s.isalpha()
427 s.isalpha()
437 s.isalpha()
/external/llvm/lib/TableGen/
DTGLexer.cpp96 if (isalpha(CurChar) || CurChar == '_') in LexToken()
170 if (isalpha(NextChar) || NextChar == '_') in LexToken()
236 if (!isalpha(CurPtr[0]) && CurPtr[0] != '_') in LexVarName()
242 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in LexVarName()
255 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in LexIdentifier()
458 if (!isalpha(*CurPtr)) in LexExclaim()
462 while (isalpha(*CurPtr)) in LexExclaim()
/external/libcxx/include/
Dcctype21 int isalpha(int c);
51 #ifdef isalpha
52 #undef isalpha
105 using ::isalpha;
Dctype.h44 #undef isalpha
/external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
DTGLexer.cpp98 if (isalpha(CurChar) || CurChar == '_') in LexToken()
172 if (isalpha(NextChar) || NextChar == '_') in LexToken()
238 if (!isalpha(CurPtr[0]) && CurPtr[0] != '_') in LexVarName()
244 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in LexVarName()
256 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in LexIdentifier()
459 if (!isalpha(*CurPtr)) in LexExclaim()
463 while (isalpha(*CurPtr)) in LexExclaim()
/external/swiftshader/third_party/LLVM/lib/TableGen/
DTGLexer.cpp91 if (isalpha(CurChar) || CurChar == '_' || CurChar == '#') in LexToken()
194 if (!isalpha(CurPtr[0]) && CurPtr[0] != '_') in LexVarName()
200 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in LexVarName()
213 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_' || in LexIdentifier()
408 if (!isalpha(*CurPtr)) in LexExclaim()
412 while (isalpha(*CurPtr)) in LexExclaim()
/external/clang/test/Sema/
Dlibbuiltins-ctype-powerpc64.c4 int isalpha(int);
22 (void)isalpha(x); in test()
Dlibbuiltins-ctype-x86_64.c4 int isalpha(int);
22 (void)isalpha(x); in test()
/external/toybox/scripts/
Dmktags.c27 if (!isalpha(*line)) { in main()
48 if (!isalpha(*s) && !isdigit(*s)) *s = '_'; in main()
/external/skia/tools/bookmaker/
DtextParser.h66 while (matchStart < fEnd && !isalpha(matchStart[0])) { in anyWord()
72 if (isalpha(matchEnd[0])) { in anyWord()
126 while (fChar > fStart && isalpha(fChar[-1])) { in backupWord()
307 while (fChar < fEnd && !isalpha(fChar[0])) { in skipToAlpha()
343 if (fChar + 1 >= fEnd || '/' != fChar[0] || !isalpha(last) || !isalpha(fChar[1])) { in skipFullName()
390 || ('.' == fChar[0] && fChar + 1 < fEnd && isalpha(fChar[1])))) { in skipToNonName()
DmdOut.h83 if (fEnd + 1 >= fRefEnd || '/' != fEnd[0] || start == fEnd || !isalpha(fEnd[-1]) in findEnd()
84 || !isalpha(fEnd[1])) { in findEnd()
158 while (start < fRefEnd && !isalpha(start[0]) && '~' != start[0]) { in skipWhiteSpace()
/external/skqp/tools/bookmaker/
DtextParser.h66 while (matchStart < fEnd && !isalpha(matchStart[0])) { in anyWord()
72 if (isalpha(matchEnd[0])) { in anyWord()
126 while (fChar > fStart && isalpha(fChar[-1])) { in backupWord()
307 while (fChar < fEnd && !isalpha(fChar[0])) { in skipToAlpha()
343 if (fChar + 1 >= fEnd || '/' != fChar[0] || !isalpha(last) || !isalpha(fChar[1])) { in skipFullName()
390 || ('.' == fChar[0] && fChar + 1 < fEnd && isalpha(fChar[1])))) { in skipToNonName()
DmdOut.h83 if (fEnd + 1 >= fRefEnd || '/' != fEnd[0] || start == fEnd || !isalpha(fEnd[-1]) in findEnd()
84 || !isalpha(fEnd[1])) { in findEnd()
158 while (start < fRefEnd && !isalpha(start[0]) && '~' != start[0]) { in skipWhiteSpace()
/external/python/cpython3/Lib/curses/
Dascii.py54 def isalnum(c): return isalpha(c) or isdigit(c)
55 def isalpha(c): return isupper(c) or islower(c) function
/external/python/cpython2/Lib/curses/
Dascii.py54 def isalnum(c): return isalpha(c) or isdigit(c)
55 def isalpha(c): return isupper(c) or islower(c) function
/external/python/cpython2/Include/
Dbytes_methods.h51 #undef isalpha
52 #define isalpha(c) undefined_isalpha(c) macro
/external/eigen/unsupported/Eigen/src/Eigenvalues/
DArpackSelfAdjointEigenSolver.h376 if (eigs_sigma.length() >= 2 && isalpha(eigs_sigma[0]) && isalpha(eigs_sigma[1])) in compute()
407 …if (eigs_sigma.substr(0,2) == "SM" || !(isalpha(eigs_sigma[0]) && isalpha(eigs_sigma[1])) || (!isB… in compute()
413 if (eigs_sigma.substr(0,2) == "SM" || !(isalpha(eigs_sigma[0]) && isalpha(eigs_sigma[1]))) in compute()
/external/google-benchmark/tools/
Dstrip_asm.py56 if not first.isalpha() and first != '_':
78 tk[1].isalpha() and tk[1] != 'Z':
/external/libcxx/utils/google-benchmark/tools/
Dstrip_asm.py56 if not first.isalpha() and first != '_':
78 tk[1].isalpha() and tk[1] != 'Z':
/external/openssh/openbsd-compat/
Dcharclass.h17 { "alpha", isalpha },
/external/libchrome/build/
Dgn_helpers.py243 if not next_char.isalpha() and not next_char=='_':
250 while next_char.isalpha() or next_char.isdigit() or next_char=='_':

1234567891011