/prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/lib/ |
libc.so | |
/prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/lib/ |
libc.so | |
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/lib/ |
libc.so | |
/prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/lib/ |
libc.so | |
/development/ndk/platforms/android-8/arch-arm/symbols/ |
libc.so.functions.txt | 612 isalpha
|
/development/ndk/platforms/android-9/arch-arm/symbols/ |
libc.so.functions.txt | 621 isalpha
|
/external/bluetooth/glib/glib/ |
guniprop.c | 66 #define ISALPHA(Type) IS ((Type), \ 122 return ISALPHA (TYPE (c)) ? TRUE : FALSE; 298 * Note: in most cases where isalpha characters are allowed, 1053 if (ISALPHA (next_type)) /* Lu,Ll,Lt,Lm,Lo */ [all...] |
/external/chromium/chrome/browser/ |
global_keyboard_shortcuts_mac.mm | 197 if (isalpha(rawChar))
|
/external/chromium/third_party/libjingle/source/talk/base/ |
pathutils.cc | 260 return (isalpha(drive[0]) &&
|
/external/clang/lib/Frontend/ |
LayoutOverrideSource.cpp | 21 (isalpha(S[Offset]) || S[Offset] == '_' ||
|
/external/libvpx/examples/includes/geshi/geshi/ |
cpp.php | 105 'isalnum', 'isalpha', 'isdigit', 'iscntrl', 'isgraph', 'islower', 'isprint',
|
python.php | 146 'find', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle',
|
cpp-qt.php | 95 'isalnum', 'isalpha', 'isdigit', 'iscntrl', 'isgraph', 'islower', 'isprint',
|
klonecpp.php | 74 'isalnum', 'isalpha', 'isdigit', 'iscntrl', 'isgraph', 'islower', 'isprint',
|
/external/llvm/lib/VMCore/ |
LLVMContext.cpp | 128 if (!std::isalpha(MDName[0]))
|
/external/mesa3d/src/glsl/glcpp/ |
glcpp-lex.l | 196 for (p = yytext; !isalpha(p[0]); p++); /* skip " # " */
|
/frameworks/base/core/java/com/android/internal/widget/ |
PasswordEntryKeyboardHelper.java | 81 public boolean isAlpha() {
|
/ndk/sources/host-tools/make-3.81/w32/ |
pathstuff.c | 62 } else if (!isalpha ((unsigned char) *p)) {
|
/external/nist-sip/java/gov/nist/core/ |
LexerCore.java | 187 if (isAlpha(nextChar)) { 249 if (!isAlpha(next)) 494 isValid = isAlpha(nextChar);
|
/external/tinyxml/ |
tinyxmlparser.cpp | 120 /*static*/ int TiXmlBase::IsAlpha( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) 130 return isalpha( anyByte ); 136 // return isalpha( anyByte ); 402 && ( IsAlpha( (unsigned char) *p, encoding ) || *p == '_' ) ) 855 else if ( IsAlpha( *(p+1), encoding ) [all...] |
/external/v8/tools/ |
test.py | 883 def IsAlpha(str): 885 if not (char.isalpha() or char.isdigit() or char == '_'): 935 elif IsAlpha(self.Current()): 937 while self.HasMore() and IsAlpha(self.Current()): 983 elif IsAlpha(scan.Current()): 989 if not IsAlpha(scan.Current()): [all...] |
/external/llvm/lib/AsmParser/ |
LLLexer.cpp | 200 if (isalpha(CurChar) || CurChar == '_') 328 if (isalpha(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' || 392 if (isalpha(CurPtr[0]) || CurPtr[0] == '-' || CurPtr[0] == '$' ||
|
/bionic/libc/regex/ |
regcomp.c | 669 if (CHIN(cs, i) && isalpha(i)) { 775 while (MORE() && isalpha(PEEK())) 860 assert(isalpha(ch)); 902 if ((p->g->cflags®_ICASE) && isalpha((uch)ch) && othercase(ch) != ch) [all...] |
/bootable/recovery/minadbd/ |
sysdeps.h | 254 return isalpha(path[0]) && path[1] == ':' && path[2] == '\\';
|
/external/chromium/testing/gmock/scripts/generator/cpp/ |
tokenize.py | 150 if c.isalpha() or c == '_': # Find a string token.
|