Home
last modified time | relevance | path

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

123456

/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/include/
Dcctype21 int isalpha(int c);
59 #ifdef isalpha
60 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isalpha(int __c) {return isalpha(__c);}
61 #undef isalpha
62 inline _LIBCPP_INLINE_VISIBILITY int isalpha(int __c) {return __libcpp_isalpha(__c);}
63 #else // isalpha
64 using ::isalpha;
65 #endif // isalpha
/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/libcxx/test/std/strings/c.strings/
Dcctype.pass.cpp20 #ifdef isalpha
21 #error isalpha defined
75 static_assert((std::is_same<decltype(std::isalpha(0)), int>::value), ""); in main()
90 assert(isalpha('a')); in main()
/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/toybox/scripts/
Dmktags.c27 if (!isalpha(*line)) { in main()
48 if (!isalpha(*s) && !isdigit(*s)) *s = '_'; in main()
/external/valgrind/coregrind/m_demangle/
Dsafe-ctype.h126 #undef isalpha
127 #define isalpha(c) do_not_use_isalpha_with_safe_ctype 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/e2fsprogs/intl/
Dl10nflist.c382 if (isalpha ((unsigned char) codeset[cnt])) in _nl_normalize_codeset()
396 if (isalpha ((unsigned char) codeset[cnt])) in _nl_normalize_codeset()
/external/opencv3/3rdparty/libjasper/
Djas_tvp.c87 (isalpha(x) || (x) == '_' || isdigit(x))
/external/libcap/libcap/
Dcap_text.c82 if (!(isalpha(c) || (c == '_'))) { in lookupname()
253 if (!isalpha(*str)) in cap_from_text()
/external/e2fsprogs/misc/
Dbase_device.c88 if (!isalpha(*cp)) in base_device()
/external/pcre/dist/
Dpcre_maketables.c139 if (isalpha(i)) x += ctype_letter; in pcre_maketables()
/external/libcxx/include/support/xlocale/
Dxlocale.h30 return isalpha(c); in isalpha_l()
/external/selinux/sepolgen/src/sepolgen/
Dmodule.py44 if len(m) == 0 and modname[0].isalpha():
/external/mesa3d/src/glsl/glcpp/
Dglcpp-lex.l182 for (p = yytext; !isalpha(p[0]); p++); /* skip " # " */
/external/wpa_supplicant_8/src/wps/
Dhttpread.c107 if (isalpha(c1) && isupper(c1)) in word_eq()
109 if (isalpha(c2) && isupper(c2)) in word_eq()
Dwps_upnp_ssdp.c47 if (isalpha(c1) && isupper(c1)) in token_eq()
49 if (isalpha(c2) && isupper(c2)) in token_eq()
/external/sqlite/android/
DPhoneNumberUtils.cpp100 return !isDialable(ch) && (isalpha(ch) == 0); in isSeparator()
/external/llvm/lib/AsmParser/
DLLLexer.cpp196 if (isalpha(static_cast<unsigned char>(CurChar)) || CurChar == '_') in LexToken()
321 if (isalpha(static_cast<unsigned char>(CurPtr[0])) || in ReadVarName()
412 if (isalpha(static_cast<unsigned char>(CurPtr[0])) || in LexExclaim()
/external/webrtc/webrtc/base/
Dpathutils.cc244 return (isalpha(drive[0]) && in GetDrive()
/external/google-breakpad/src/testing/scripts/generator/cpp/
Dtokenize.py150 if c.isalpha() or c == '_': # Find a string token.
/external/llvm/lib/Support/
Dregcomp.c713 if (CHIN(cs, i) && isalpha(i)) { in p_bracket()
819 while (MORE() && isalpha((uch)PEEK())) in p_b_cclass()
904 assert(isalpha(ch)); in othercase()
946 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch) in ordinary()
/external/dbus/dbus/
Ddbus-sysdeps-util-win.c723 isalpha (_dbus_string_get_byte (filename, 0)))) in _dbus_string_get_dirname()
747 isalpha (_dbus_string_get_byte (filename, 0)))) in _dbus_string_get_dirname()
/external/opencv3/samples/python2/
Dvideo.py144 if len(chunks) > 1 and len(chunks[0]) == 1 and chunks[0].isalpha():

123456