HomeSort by relevance Sort by last modified time
    Searched refs:isASCIIAlphanumeric (Results 1 - 10 of 10) sorted by null

  /external/webkit/JavaScriptCore/wtf/
ASCIICType.h 61 inline bool isASCIIAlphanumeric(char c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z'); }
62 inline bool isASCIIAlphanumeric(unsigned short c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z'); }
64 inline bool isASCIIAlphanumeric(wchar_t c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z'); }
66 inline bool isASCIIAlphanumeric(int c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z'); }
154 using WTF::isASCIIAlphanumeric;
  /external/webkit/WebCore/platform/text/
TextEncodingRegistry.cpp 77 while (c1 && !isASCIIAlphanumeric(c1));
80 while (c2 && !isASCIIAlphanumeric(c2));
103 } while (!isASCIIAlphanumeric(c));
303 if (isASCIIAlphanumeric(c)) {
  /external/webkit/WebCore/css/
CSSPrimitiveValue.cpp 143 if (!(p[0] == '_' || p[0] == '-' || p[0] >= 128 || isASCIIAlphanumeric(p[0])))
  /external/webkit/JavaScriptCore/yarr/
RegexParser.h 352 if (inCharacterClass ? WTF::isASCIIAlphanumeric(control) || (control == '_') : WTF::isASCIIAlpha(control)) {
  /external/webkit/JavaScriptCore/parser/
Lexer.cpp 228 return isASCII(c) ? isASCIIAlphanumeric(c) || c == '$' || c == '_' : isNonASCIIIdentPart(c);
  /external/webkit/JavaScriptCore/wrec/
WRECParser.cpp 466 if ((!inCharacterClass && !isASCIIAlpha(control)) || (!isASCIIAlphanumeric(control) && control != '_')) {
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp     [all...]
  /external/webkit/JavaScriptCore/pcre/
pcre_compile.cpp 309 if ((!isClass && !isASCIIAlpha(c)) || (!isASCIIAlphanumeric(c) && c != '_')) {
    [all...]
  /external/webkit/WebCore/dom/
Document.cpp     [all...]
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp 195 if (WTF::isASCIIAlphanumeric(ch) || ch == '_')
    [all...]

Completed in 850 milliseconds