OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:priorContext
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIterator.h
43
PLATFORM_EXPORT TextBreakIterator* acquireLineBreakIterator(const LChar*, int length, const AtomicString& locale, const UChar*
priorContext
, unsigned priorContextLength);
44
PLATFORM_EXPORT TextBreakIterator* acquireLineBreakIterator(const UChar*, int length, const AtomicString& locale, const UChar*
priorContext
, unsigned priorContextLength);
131
const UChar*
priorContext
= priorContextLength ? &m_priorContext[priorContextCapacity - priorContextLength] : 0;
134
m_iterator = acquireLineBreakIterator(m_string.characters8(), m_string.length(), m_locale,
priorContext
, priorContextLength);
136
m_iterator = acquireLineBreakIterator(m_string.characters16(), m_string.length(), m_locale,
priorContext
, priorContextLength);
137
m_cachedPriorContext =
priorContext
;
139
} 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 1276 milliseconds