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.java34 private CharsTrie backwardsTrie; // i.e. ".srM" for Mrs. field in SimpleFilteredSentenceBreakIterator
46 CharsTrie backwardsTrie) { in SimpleFilteredSentenceBreakIterator() argument
49 this.backwardsTrie = backwardsTrie; in SimpleFilteredSentenceBreakIterator()
74 backwardsTrie.reset(); in breakExceptionAt()
89 ((r = backwardsTrie.nextForCodePoint(uch)).hasNext())) {// more in the trie in breakExceptionAt()
92 bestValue = backwardsTrie.getValue(); in breakExceptionAt()
97 bestValue = backwardsTrie.getValue(); in breakExceptionAt()
132 backwardsTrie == null) { // .. no backwards table loaded == no exceptions in internalNext()
162 backwardsTrie == null) { // .. no backwards table loaded == no exceptions in internalPrev()
191 …gate.equals(other.delegate) && text.equals(other.text) && backwardsTrie.equals(other.backwardsTrie) in equals()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DSimpleFilteredSentenceBreakIterator.java32 private CharsTrie backwardsTrie; // i.e. ".srM" for Mrs. field in SimpleFilteredSentenceBreakIterator
44 CharsTrie backwardsTrie) { in SimpleFilteredSentenceBreakIterator() argument
47 this.backwardsTrie = backwardsTrie; in SimpleFilteredSentenceBreakIterator()
72 backwardsTrie.reset(); in breakExceptionAt()
87 ((r = backwardsTrie.nextForCodePoint(uch)).hasNext())) {// more in the trie in breakExceptionAt()
90 bestValue = backwardsTrie.getValue(); in breakExceptionAt()
95 bestValue = backwardsTrie.getValue(); in breakExceptionAt()
130 backwardsTrie == null) { // .. no backwards table loaded == no exceptions in internalNext()
160 backwardsTrie == null) { // .. no backwards table loaded == no exceptions in internalPrev()
189 …gate.equals(other.delegate) && text.equals(other.text) && backwardsTrie.equals(other.backwardsTrie) in equals()
[all …]
/external/icu/icu4c/source/common/
Dfilteredbrk.cpp582 LocalPointer<UCharsTrie> backwardsTrie; // i.e. ".srM" for Mrs. in build() local
662 backwardsTrie.adoptInstead(builder->build(USTRINGTRIE_BUILD_FAST, status)); in build()
677 …edSentenceBreakIterator(adopt.orphan(), forwardsPartialTrie.orphan(), backwardsTrie.orphan(), stat… in build()