Searched refs:m_codeEnd (Results 1 – 3 of 3) sorted by relevance
88 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 …]
100 const UChar* m_codeEnd; variable
5632 m_length with m_codeEnd and m_currentOffset with m_codeStart. Added code5682 m_nextOffset3. Added m_skipLineEnd, m_codeStart, m_codeEnd, and