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

1 2 34 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
UserString.py 91 def isalpha(self): return self.data.isalpha() member in class:UserString
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_unicodedata.py 32 u"01"[char.isalpha()],
43 u"01"[(char + u'abc').isalpha()],
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
ParserValidate.py 400 if (not Char.isalpha()) and \
716 if not UserId or not UserId[0].isalpha():
  /external/python/cpython2/Include/
pyport.h 728 #undef isalpha macro
729 #define isalpha(c) iswalpha(btowc(c)) macro
  /external/python/cpython2/Lib/
UserString.py 91 def isalpha(self): return self.data.isalpha() member in class:UserString
  /external/python/cpython2/Lib/test/
test_unicodedata.py 32 u"01"[char.isalpha()],
43 u"01"[(char + u'abc').isalpha()],
  /external/python/cpython3/Lib/test/
test_unicodedata.py 32 "01"[char.isalpha()],
43 "01"[(char + 'abc').isalpha()],
  /bionic/libc/bionic/
wctype.cpp 57 int iswalpha(wint_t wc) { return __icu_hasBinaryProperty(wc, UCHAR_ALPHABETIC, isalpha); }
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
grammar.c 186 if (isalpha(Py_CHARMASK(lb->lb_str[1])) ||
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
patcomp.py 187 if value[0].isalpha():
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
grammar.c 186 if (isalpha(Py_CHARMASK(lb->lb_str[1])) ||
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
NumericInt.c 123 if(isalpha(c)) { /* If c is one of [A-Za-z]... */
  /external/freetype/src/tools/
apinames.c 281 if ( !isalpha(*p) )
  /external/google-breakpad/src/testing/scripts/generator/cpp/
tokenize.py 150 if c.isalpha() or c == '_': # Find a string token.
  /external/googletest/googlemock/scripts/generator/cpp/
tokenize.py 150 if c.isalpha() or c == '_': # Find a string token.
  /external/iputils/ninfod/
ninfod_name.c 193 if (!isalpha(name[i+ii]) && !isdigit(name[i+ii]))
  /external/python/cpython2/Lib/lib2to3/
patcomp.py 186 if value[0].isalpha():
  /external/python/cpython2/Parser/
grammar.c 204 if (isalpha(Py_CHARMASK(lb->lb_str[1])) ||
  /external/python/cpython3/Lib/lib2to3/
patcomp.py 186 if value[0].isalpha():
  /external/python/cpython3/Parser/
grammar.c 205 if (isalpha(Py_CHARMASK(lb->lb_str[1])) ||
  /external/selinux/python/sepolgen/src/sepolgen/
module.py 44 if len(m) == 0 and modname[0].isalpha():
  /external/sqlite/android/
PhoneNumberUtils.cpp 100 return !isDialable(ch) && (isalpha(ch) == 0);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 34 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 40 if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]*
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
ResourceScriptToken.cpp 284 return std::isalpha(CurChar) || CurChar == '_' || CurChar == '.';

Completed in 500 milliseconds

1 2 34 5 6 7 8 91011>>