Home
last modified time | relevance | path

Searched refs:m_codeEnd (Results 1 – 3 of 3) sorted by relevance

/external/webkit/JavaScriptCore/parser/
DLexer.cpp88 if (LIKELY(m_code < m_codeEnd)) in shift1()
100 if (LIKELY(m_code + 1 < m_codeEnd)) { in shift2()
104 m_next2 = m_code < m_codeEnd ? m_code[0] : -1; in shift2()
114 if (LIKELY(m_code + 2 < m_codeEnd)) { in shift3()
119 m_next1 = m_code < m_codeEnd ? m_code[0] : -1; in shift3()
120 m_next2 = m_code + 1 < m_codeEnd ? m_code[1] : -1; in shift3()
129 if (LIKELY(m_code + 3 < m_codeEnd)) { in shift4()
135 m_current = m_code < m_codeEnd ? m_code[0] : -1; in shift4()
136 m_next1 = m_code + 1 < m_codeEnd ? m_code[1] : -1; in shift4()
137 m_next2 = m_code + 2 < m_codeEnd ? m_code[2] : -1; in shift4()
[all …]
DLexer.h100 const UChar* m_codeEnd; variable
/external/webkit/JavaScriptCore/
DChangeLog-2009-06-165632 m_length with m_codeEnd and m_currentOffset with m_codeStart. Added code
5682 m_nextOffset3. Added m_skipLineEnd, m_codeStart, m_codeEnd, and