Searched refs:isalpha (Results 1 - 25 of 116) sorted by relevance

12345

/external/libcxx/test/std/localization/locales/locale.convenience/classification/
H A Disalpha.pass.cpp12 // template <class charT> bool isalpha (charT c, const locale& loc);
20 assert(!std::isalpha(' ', l));
21 assert(!std::isalpha('<', l));
22 assert(!std::isalpha('\x8', l));
23 assert( std::isalpha('A', l));
24 assert( std::isalpha('a', l));
25 assert( std::isalpha('z', l));
26 assert(!std::isalpha('3', l));
27 assert(!std::isalpha('.', l));
28 assert( std::isalpha('
[all...]
/external/openssh/openbsd-compat/
H A Dcharclass.h17 { "alpha", isalpha },
H A Dstrtoll.c114 else if (isalpha(c))
H A Dstrtoul.c84 else if (isalpha(c))
H A Dstrtoull.c86 else if (isalpha(c))
H A Dreadpassphrase.c142 if (isalpha(ch)) {
H A Dreadpassphrase.c.orig142 if (isalpha(ch)) {
/external/libcxx/test/std/depr/depr.c.headers/
H A Dctype_h.pass.cpp20 #ifdef isalpha
21 #error isalpha defined
75 static_assert((std::is_same<decltype(isalpha(0)), int>::value), "");
90 assert(isalpha('a'));
/external/libcxx/test/std/strings/c.strings/
H A Dcctype.pass.cpp20 #ifdef isalpha
21 #error isalpha defined
75 static_assert((std::is_same<decltype(std::isalpha(0)), int>::value), "");
90 assert(isalpha('a'));
/external/linux-tools-perf/src/tools/perf/util/
H A Dprobe-finder.h14 return isalpha(name[0]) || name[0] == '_';
H A Dutil.h199 #undef isalpha macro
227 #define isalpha(x) sane_istest(x,GIT_ALPHA) macro
/external/lldb/examples/scripting/
H A Ddictionary.c32 while ((start < end) && (!isalpha (start[0])))
35 while ((end > start) && (!isalpha (end[0])))
/external/valgrind/coregrind/m_demangle/
H A Dsafe-ctype.h33 case, e.g. ISALPHA not isalpha. */
126 #undef isalpha macro
127 #define isalpha(c) do_not_use_isalpha_with_safe_ctype macro
/external/e2fsprogs/misc/
H A Dbase_device.c88 if (!isalpha(*cp))
/external/pcre/dist/
H A Dpcre_maketables.c139 if (isalpha(i)) x += ctype_letter;
/external/llvm/lib/TableGen/
H A DTGLexer.cpp96 if (isalpha(CurChar) || CurChar == '_')
170 if (isalpha(NextChar) || NextChar == '_')
236 if (!isalpha(CurPtr[0]) && CurPtr[0] != '_')
242 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
255 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_')
458 if (!isalpha(*CurPtr))
462 while (isalpha(*CurPtr))
/external/eigen/unsupported/Eigen/src/Eigenvalues/
H A DArpackSelfAdjointEigenSolver.h376 if (eigs_sigma.length() >= 2 && isalpha(eigs_sigma[0]) && isalpha(eigs_sigma[1]))
407 if (eigs_sigma.substr(0,2) == "SM" || !(isalpha(eigs_sigma[0]) && isalpha(eigs_sigma[1])) || (!isBempty && !BisSPD))
413 if (eigs_sigma.substr(0,2) == "SM" || !(isalpha(eigs_sigma[0]) && isalpha(eigs_sigma[1])))
/external/libcxx/include/support/xlocale/
H A Dxlocale.h30 return isalpha(c);
/external/selinux/sepolgen/src/sepolgen/
H A Dmodule.py41 if len(m) == 0 and modname[0].isalpha():
/external/e2fsprogs/intl/
H A Dl10nflist.c382 if (isalpha ((unsigned char) codeset[cnt]))
396 if (isalpha ((unsigned char) codeset[cnt]))
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-lex.l182 for (p = yytext; !isalpha(p[0]); p++); /* skip " # " */
/external/bison/lib/
H A Dstrtol.c214 # define ISALPHA(Ch) isalpha (Ch)
/external/google-breakpad/src/testing/scripts/generator/cpp/
H A Dtokenize.py150 if c.isalpha() or c == '_': # Find a string token.
/external/iputils/ninfod/
H A Dninfod_name.c193 if (!isalpha(name[i+ii]) && !isdigit(name[i+ii]))
/external/jpeg/
H A Dansi2knr.c305 #define is_alpha(c) (is_ascii(c) && isalpha(c))

Completed in 820 milliseconds

12345