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

  /external/webkit/JavaScriptCore/wtf/
ASCIICType.h 82 inline bool isASCIIOctalDigit(char c) { return (c >= '0') & (c <= '7'); }
83 inline bool isASCIIOctalDigit(unsigned short c) { return (c >= '0') & (c <= '7'); }
85 inline bool isASCIIOctalDigit(wchar_t c) { return (c >= '0') & (c <= '7'); }
87 inline bool isASCIIOctalDigit(int c) { return (c >= '0') & (c <= '7'); }
158 using WTF::isASCIIOctalDigit;
  /external/webkit/JavaScriptCore/wrec/
WRECParser.h 178 while (n < 32 && WTF::isASCIIOctalDigit(peek()))
  /external/webkit/JavaScriptCore/yarr/
RegexParser.h 734 ASSERT(WTF::isASCIIOctalDigit(peek()));
737 while (n < 32 && !atEndOfPattern() && WTF::isASCIIOctalDigit(peek()))

Completed in 82 milliseconds