Home
last modified time | relevance | path

Searched refs:m_next1 (Results 1 – 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/parser/
DLexer.cpp85 m_current = m_next1; in shift1()
86 m_next1 = m_next2; in shift1()
99 m_next1 = m_next3; in shift2()
115 m_next1 = m_code[0]; in shift3()
119 m_next1 = m_code < m_codeEnd ? m_code[0] : -1; in shift3()
131 m_next1 = m_code[1]; in shift4()
136 m_next1 = m_code + 1 < m_codeEnd ? m_code[1] : -1; in shift4()
199 if (m_current + m_next1 == '\n' + '\r') in shiftLineTerminator()
307 if (m_next1 == '>' && m_next2 == '>') { in lex()
317 if (m_next1 == '>') { in lex()
[all …]
DLexer.h107 int m_next1; variable