/external/tinyxml/ |
changes.txt | 68 - Fixed bug where isalpha() and isalnum() would get called with a negative value for 170 - Made the IsAlpha and IsAlphaNum much more tolerant of non-UTF-8 encodings. Thanks
|
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/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...] |
/frameworks/base/core/java/com/android/internal/widget/ |
PasswordEntryKeyboardHelper.java | 65 public boolean isAlpha() {
|
/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...] |
/external/icu4c/common/ |
uloc_tag.c | 53 #define ISALPHA(c) (((c)>='A' && (c)<='Z') || ((c)>='a' && (c)<='z')) 170 if (!ISALPHA(*(s + i))) { 192 if (!ISALPHA(*(s + i)) && !ISNUMERIC(*(s + i))) { 290 if (len == 1 && ISALPHA(*s) && (uprv_tolower(*s) != PRIVATEUSE)) { [all...] |
/system/core/adb/ |
sysdeps.h | 251 return isalpha(path[0]) && path[1] == ':' && path[2] == '\\';
|
/external/icu4c/tools/tzcode/ |
zdump.c | 23 #include "ctype.h" /* for isalpha et al. */ 235 while (isascii((unsigned char) *cp) && isalpha((unsigned char) *cp))
|
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
httpread.c | 125 if (isalpha(c1) && isupper(c1)) 127 if (isalpha(c2) && isupper(c2))
|
wps_upnp_ssdp.c | 45 if (isalpha(c1) && isupper(c1)) 47 if (isalpha(c2) && isupper(c2))
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/ |
URI.java | [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
URI.java | [all...] |
/external/bison/tests/ |
cxx-type.at | 188 if (isalpha (c))
|
/external/sqlite/android/ |
PhoneNumberUtils.cpp | 100 return !isDialable(ch) && (isalpha(ch) == 0);
|
/external/stlport/src/c_locale_dummy/ |
c_locale_dummy.c | 59 if (isalpha(c)) ctable[(unsigned char)c] |= _Locale_ALPHA;
|
/external/webkit/WebKitTools/android/flex-2.5.4a/ |
parse.y | 743 | CCE_ALPHA { CCL_EXPR(isalpha) }
|
/frameworks/base/media/libdrm/mobile1/src/xml/ |
xml_tinyparser.c | 24 #define XML_IS_NAMECHAR(ch) (isalpha(ch) || isdigit(ch) || ch ==':' || \
|
/external/openssl/ssl/ |
ssltest.c | [all...] |
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
string_utils.sgml | 323 Unlike the standard C library isalpha() function, this only
|
/external/icu4c/tools/genrb/ |
derb.c | 242 absfilename = (uprv_strlen(arg) > 2 && isalpha(arg[0])
|
/external/jpeg/ |
ansi2knr.c | 305 #define is_alpha(c) (is_ascii(c) && isalpha(c))
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
builtins.def | [all...] |
/external/clearsilver/imd/ |
imd.c | 57 if(isalpha(*ip)) {
|
/external/dropbear/ |
scp.c | 1201 if (!isalpha(c) && !isdigit(c)) {
|
/frameworks/base/tools/aidl/ |
aidl.cpp | 169 if (isalpha(filename[0]) && filename[1] == ':'
|