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

  /external/webkit/Source/JavaScriptCore/wtf/
ASCIICType.h 86 inline bool isASCIIOctalDigit(char c) { return (c >= '0') & (c <= '7'); }
87 inline bool isASCIIOctalDigit(unsigned short c) { return (c >= '0') & (c <= '7'); }
89 inline bool isASCIIOctalDigit(wchar_t c) { return (c >= '0') & (c <= '7'); }
91 inline bool isASCIIOctalDigit(int c) { return (c >= '0') & (c <= '7'); }
92 inline bool isASCIIOctalDigit(unsigned c) { return (c >= '0') & (c <= '7'); }
171 using WTF::isASCIIOctalDigit;
  /external/webkit/Source/JavaScriptCore/yarr/
YarrParser.h 762 ASSERT(WTF::isASCIIOctalDigit(peek()));
765 while (n < 32 && !atEndOfPattern() && WTF::isASCIIOctalDigit(peek()))
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.cpp 502 } else if (!strictMode && isASCIIOctalDigit(m_current)) {
506 if (isASCIIOctalDigit(m_current)) {
510 if (character1 >= '0' && character1 <= '3' && isASCIIOctalDigit(m_current)) {
598 } while (isASCIIOctalDigit(m_current) && maximumDigits >= 0);
608 while (isASCIIOctalDigit(m_current)) {
994 if (isASCIIOctalDigit(m_current)) {
    [all...]

Completed in 457 milliseconds