Home
last modified time | relevance | path

Searched refs:backwardsTrie (Results 1 – 3 of 3) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DSimpleFilteredSentenceBreakIterator.java31 private CharsTrie backwardsTrie; // i.e. ".srM" for Mrs. field in SimpleFilteredSentenceBreakIterator
43 CharsTrie backwardsTrie) { in SimpleFilteredSentenceBreakIterator() argument
46 this.backwardsTrie = backwardsTrie; in SimpleFilteredSentenceBreakIterator()
53 backwardsTrie == null) { // .. no backwards table loaded == no exceptions in next()
61 backwardsTrie.reset(); in next()
77 ((r = backwardsTrie.nextForCodePoint(uch)).hasNext())) {// more in the trie in next()
80 bestValue = backwardsTrie.getValue(); in next()
85 bestValue = backwardsTrie.getValue(); in next()
136 …gate.equals(other.delegate) && text.equals(other.text) && backwardsTrie.equals(other.backwardsTrie) in equals()
142 …return (forwardsPartialTrie.hashCode() * 39) + (backwardsTrie.hashCode() * 11) + delegate.hashCode… in hashCode()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DSimpleFilteredSentenceBreakIterator.java29 private CharsTrie backwardsTrie; // i.e. ".srM" for Mrs. field in SimpleFilteredSentenceBreakIterator
41 CharsTrie backwardsTrie) { in SimpleFilteredSentenceBreakIterator() argument
44 this.backwardsTrie = backwardsTrie; in SimpleFilteredSentenceBreakIterator()
51 backwardsTrie == null) { // .. no backwards table loaded == no exceptions in next()
59 backwardsTrie.reset(); in next()
75 ((r = backwardsTrie.nextForCodePoint(uch)).hasNext())) {// more in the trie in next()
78 bestValue = backwardsTrie.getValue(); in next()
83 bestValue = backwardsTrie.getValue(); in next()
134 …gate.equals(other.delegate) && text.equals(other.text) && backwardsTrie.equals(other.backwardsTrie) in equals()
140 …return (forwardsPartialTrie.hashCode() * 39) + (backwardsTrie.hashCode() * 11) + delegate.hashCode… in hashCode()
[all …]
/external/icu/icu4c/source/common/
Dfilteredbrk.cpp548 LocalPointer<UCharsTrie> backwardsTrie; // i.e. ".srM" for Mrs. in build() local
628 backwardsTrie.adoptInstead(builder->build(USTRINGTRIE_BUILD_FAST, status)); in build()
643 …edSentenceBreakIterator(adopt.orphan(), forwardsPartialTrie.orphan(), backwardsTrie.orphan(), stat… in build()