Searched defs:character1 (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
H A DLexer.cpp497 int character1 = m_current; local
499 if (character1 != '0' || isASCIIDigit(m_current))
504 int character1 = m_current; local
510 if (character1 >= '0' && character1 <= '3' && isASCIIOctalDigit(m_current)) {
511 record16((character1 - '0') * 64 + (character2 - '0') * 8 + m_current - '0');
514 record16((character1 - '0') * 8 + character2 - '0');
516 record16(character1 - '0');

Completed in 56 milliseconds