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

  /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 = textBreakFollowing(breakIterator, i - 1 + priorContextLength);
169 nextBreak -= priorContextLength;
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
TextBreakIterator.h 42 TextBreakIterator* acquireLineBreakIterator(const LChar*, int length, const AtomicString& locale, const UChar* priorContext, unsigned priorContextLength);
43 TextBreakIterator* acquireLineBreakIterator(const UChar*, int length, const AtomicString& locale, const UChar* priorContext, unsigned priorContextLength);
120 unsigned priorContextLength() const
122 unsigned priorContextLength = 0;
125 ++priorContextLength;
127 ++priorContextLength;
129 return priorContextLength;
135 TextBreakIterator* get(unsigned priorContextLength)
137 ASSERT(priorContextLength <= priorContextCapacity);
138 const UChar* priorContext = priorContextLength ? &m_priorContext[priorContextCapacity - priorContextLength] : 0
    [all...]

Completed in 1576 milliseconds