HomeSort by relevance Sort by last modified time
    Searched refs:priorContext (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIterator.h 45 PLATFORM_EXPORT TextBreakIterator* acquireLineBreakIterator(const LChar*, int length, const AtomicString& locale, const UChar* priorContext, unsigned priorContextLength);
46 PLATFORM_EXPORT TextBreakIterator* acquireLineBreakIterator(const UChar*, int length, const AtomicString& locale, const UChar* priorContext, unsigned priorContextLength);
133 const UChar* priorContext = priorContextLength ? &m_priorContext[priorContextCapacity - priorContextLength] : 0;
136 m_iterator = acquireLineBreakIterator(m_string.characters8(), m_string.length(), m_locale, priorContext, priorContextLength);
138 m_iterator = acquireLineBreakIterator(m_string.characters16(), m_string.length(), m_locale, priorContext, priorContextLength);
139 m_cachedPriorContext = priorContext;
141 } else if (priorContext != m_cachedPriorContext || priorContextLength != m_cachedPriorContextLength) {
TextBreakIteratorICU.cpp 110 enum TextContext { NoContext, PriorContext, PrimaryContext };
190 return forward ? PrimaryContext : PriorContext;
191 return PriorContext;
198 return text->chunkContents == text->pExtra ? PrimaryContext : PriorContext;
311 ASSERT(newContext == PriorContext);
329 static void textInit(UText* text, const UTextFuncs* funcs, const void* string, unsigned length, const UChar* priorContext, int priorContextLength)
336 text->q = priorContext;
340 static UText* textOpenLatin1(UTextWithBuffer* utWithBuffer, const LChar* string, unsigned length, const UChar* priorContext, int priorContextLength, UErrorCode* status)
354 textInit(text, &textLatin1Funcs, string, length, priorContext, priorContextLength);
362 return text->chunkContents == text->p ? PrimaryContext : PriorContext;
    [all...]

Completed in 63 milliseconds