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

  /external/webkit/JavaScriptCore/wtf/
ASCIICType.h 47 inline bool isASCII(char c) { return !(c & ~0x7F); }
48 inline bool isASCII(unsigned short c) { return !(c & ~0x7F); }
50 inline bool isASCII(wchar_t c) { return !(c & ~0x7F); }
52 inline bool isASCII(int c) { return !(c & ~0x7F); }
152 using WTF::isASCII;
  /external/webkit/JavaScriptCore/parser/
Lexer.h 121 return isASCII(ch) ? (ch == ' ' || ch == '\t' || ch == 0xB || ch == 0xC) : WTF::Unicode::isSeparatorSpace(ch);
Lexer.cpp 217 return isASCII(c) ? isASCIIAlpha(c) || c == '$' || c == '_' : isNonASCIIIdentStart(c);
228 return isASCII(c) ? isASCIIAlphanumeric(c) || c == '$' || c == '_' : isNonASCIIIdentPart(c);
  /external/webkit/JavaScriptCore/wrec/
WRECGenerator.cpp 260 if (!isASCII(ch1) && Unicode::toLower(ch1) != Unicode::toUpper(ch1))
262 if (!isASCII(ch2) && Unicode::toLower(ch2) != Unicode::toUpper(ch2))
317 } else if (!isASCII(ch) && ((lower = Unicode::toLower(ch)) != (upper = Unicode::toUpper(ch)))) {
388 Jump isAscii = branch32(LessThanOrEqual, character, Imm32(0x7f));
409 isAscii.link(this);
  /external/webkit/JavaScriptCore/yarr/
RegexCompiler.cpp 370 if (m_pattern.m_ignoreCase && !isASCII(ch) && (Unicode::toUpper(ch) != Unicode::toLower(ch))) {

Completed in 42 milliseconds