HomeSort by relevance Sort by last modified time
    Searched refs:isalpha (Results 251 - 275 of 315) sorted by null

<<111213

  /external/selinux/libsepol/cil/src/
cil_verify.c 69 if (!isalpha(name[0])) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 132 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 81 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 100 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Path.cpp 73 std::isalpha(static_cast<unsigned char>(path[0])) && path[1] == ':')
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
StringRefTest.cpp 1009 auto IsAlpha = [](char c) { return ::isalpha(c); };
    [all...]
  /external/v8/src/torque/
torque-parser.cc 833 if (!MatchChar(std::isalpha, pos)) return false;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFfsFile/
GenFfsFile.c 34 #include <ctype.h> // for isalpha()
1357 if (!isalpha (Buffer[0]) || (Buffer[1] != ':')) {
    [all...]
  /external/ImageMagick/MagickCore/
xml-tree.c     [all...]
  /external/ImageMagick/coders/
svg.c     [all...]
  /external/icu/icu4c/source/tools/pkgdata/
pkgdata.cpp 379 *cp++ = isalpha(*sp) ? * sp : '_';
    [all...]
  /external/lua/src/
lstrlib.c 285 case 'a' : res = isalpha(c); break;
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 127 isalpha(text[0]) &&
    [all...]
  /external/python/dateutil/dateutil/parser/
_parser.py 212 return nextchar.isalpha()
    [all...]
  /external/epid-sdk/ext/argtable3/
argtable3.c     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 1120 while (isalpha(S[End]))
    [all...]
  /external/kmod/tools/
depmod.c     [all...]
  /external/one-true-awk/
run.c 871 if (isalpha((uschar)*s) && *s != 'l' && *s != 'h' && *s != 'L')
    [all...]
  /external/openssh/
readconf.c 698 if (!isalpha((u_char)name[0]) && !isdigit((u_char)name[0]))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
AsmWriter.cpp     [all...]
  /external/wpa_supplicant_8/src/common/
wpa_common.c     [all...]
  /frameworks/av/media/extractors/mkv/
MatroskaExtractor.cpp 619 } else if (isalpha(c)) {
    [all...]
  /frameworks/av/media/libstagefright/
Utils.cpp     [all...]
  /external/ImageMagick/config/
ltmain.sh     [all...]
  /external/curl/
ltmain.sh     [all...]

Completed in 1111 milliseconds

<<111213