Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/text/
DTextBreakIterator.h84 …COMPILE_ASSERT(WTF_ARRAY_LENGTH(m_priorContext) == 2, TextBreakIterator_unexpected_prior_context_l… in lastCharacter()
85 return m_priorContext[1]; in lastCharacter()
90 …COMPILE_ASSERT(WTF_ARRAY_LENGTH(m_priorContext) == 2, TextBreakIterator_unexpected_prior_context_l… in secondToLastCharacter()
91 return m_priorContext[0]; in secondToLastCharacter()
96 …COMPILE_ASSERT(WTF_ARRAY_LENGTH(m_priorContext) == 2, TextBreakIterator_unexpected_prior_context_l… in setPriorContext()
97 m_priorContext[0] = secondToLast; in setPriorContext()
98 m_priorContext[1] = last; in setPriorContext()
103 …COMPILE_ASSERT(WTF_ARRAY_LENGTH(m_priorContext) == 2, TextBreakIterator_unexpected_prior_context_l… in updatePriorContext()
104 m_priorContext[0] = m_priorContext[1]; in updatePriorContext()
105 m_priorContext[1] = last; in updatePriorContext()
[all …]