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.h82 …COMPILE_ASSERT(WTF_ARRAY_LENGTH(m_priorContext) == 2, TextBreakIterator_unexpected_prior_context_l… in lastCharacter()
83 return m_priorContext[1]; in lastCharacter()
88 …COMPILE_ASSERT(WTF_ARRAY_LENGTH(m_priorContext) == 2, TextBreakIterator_unexpected_prior_context_l… in secondToLastCharacter()
89 return m_priorContext[0]; in secondToLastCharacter()
94 …COMPILE_ASSERT(WTF_ARRAY_LENGTH(m_priorContext) == 2, TextBreakIterator_unexpected_prior_context_l… in setPriorContext()
95 m_priorContext[0] = secondToLast; in setPriorContext()
96 m_priorContext[1] = last; in setPriorContext()
101 …COMPILE_ASSERT(WTF_ARRAY_LENGTH(m_priorContext) == 2, TextBreakIterator_unexpected_prior_context_l… in updatePriorContext()
102 m_priorContext[0] = m_priorContext[1]; in updatePriorContext()
103 m_priorContext[1] = last; in updatePriorContext()
[all …]