HomeSort by relevance Sort by last modified time
    Searched refs:priorContextLength (Results 1 - 3 of 3) 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);
115 unsigned priorContextLength() const
117 unsigned priorContextLength = 0;
120 ++priorContextLength;
122 ++priorContextLength;
124 return priorContextLength;
130 TextBreakIterator* get(unsigned priorContextLength)
132 ASSERT(priorContextLength <= priorContextCapacity);
133 const UChar* priorContext = priorContextLength ? &m_priorContext[priorContextCapacity - priorContextLength] : 0
    [all...]
TextBreakIteratorICU.cpp 329 static void textInit(UText* text, const UTextFuncs* funcs, const void* string, unsigned length, const UChar* priorContext, int priorContextLength)
337 text->b = priorContextLength;
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);
452 static UText* textOpenUTF16(UText* text, const UChar* string, unsigned length, const UChar* priorContext, int priorContextLength, UErrorCode* status)
467 textInit(text, &textUTF16Funcs, string, length, priorContext, priorContextLength);
539 TextBreakIterator* acquireLineBreakIterator(const LChar* string, int length, const AtomicString& locale, const UChar* priorContext, unsigned priorContextLength)
551 UText* text = textOpenLatin1(&textLocal, string, length, priorContext, priorContextLength, &openStatus);
569 TextBreakIterator* acquireLineBreakIterator(const UChar* string, int length, const AtomicString& locale, const UChar* priorContext, unsigned priorContextLength)
578 UText* text = textOpenUTF16(&textLocal, string, length, priorContext, priorContextLength, &openStatus)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
break_lines.cpp 154 unsigned priorContextLength = lazyBreakIterator.priorContextLength();
164 if (i || priorContextLength) {
165 TextBreakIterator* breakIterator = lazyBreakIterator.get(priorContextLength);
167 nextBreak = breakIterator->following(i - 1 + priorContextLength);
169 nextBreak -= priorContextLength;

Completed in 41 milliseconds