Home
last modified time | relevance | path

Searched refs:wordIterator (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
DTouchAdjustment.cpp159 TextBreakIterator* wordIterator = wordBreakIterator(textValue, 0, textValue.length()); in appendContextSubtargetsForNode() local
160 int lastOffset = wordIterator->first(); in appendContextSubtargetsForNode()
164 while ((offset = wordIterator->next()) != -1) { in appendContextSubtargetsForNode()
165 if (isWordTextBreak(wordIterator)) { in appendContextSubtargetsForNode()
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DBreakIteratorTest.java56 BreakIterator wordIterator = BreakIterator.getWordInstance(); in testCache() local
57 assertFalse(wordIterator.equals(iterator)); in testCache()