Home
last modified time | relevance | path

Searched refs:hasBoundaryBefore (Results 1 – 15 of 15) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNorm2AllModes.java71 public boolean hasBoundaryBefore(int c) { return true; } in hasBoundaryBefore() method in Norm2AllModes.NoopNormalizer2
188 public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundary(c, true); } in hasBoundaryBefore() method in Norm2AllModes.DecomposeNormalizer2
238 public boolean hasBoundaryBefore(int c) { return impl.hasCompBoundaryBefore(c); } in hasBoundaryBefore() method in Norm2AllModes.ComposeNormalizer2
274 public boolean hasBoundaryBefore(int c) { return impl.hasFCDBoundaryBefore(c); } in hasBoundaryBefore() method in Norm2AllModes.FCDNormalizer2
/external/icu/icu4c/source/common/unicode/
Dnormalizer2.h398 virtual UBool hasBoundaryBefore(UChar32 c) const = 0;
618 virtual UBool hasBoundaryBefore(UChar32 c) const;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DFilteredNormalizer2.java197 public boolean hasBoundaryBefore(int c) { in hasBoundaryBefore() method in FilteredNormalizer2
198 return !set.contains(c) || norm2.hasBoundaryBefore(c); in hasBoundaryBefore()
DNormalizer2.java401 public abstract boolean hasBoundaryBefore(int c); in hasBoundaryBefore() method in Normalizer2
DNormalizer.java1824 if(norm2.hasBoundaryBefore(c)) { in nextNormalize()
1847 if(norm2.hasBoundaryBefore(c)) { in previousNormalize()
/external/icu/icu4c/source/common/
Dnorm2allmodes.h211 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasDecompBoundary(c, TRUE); } in hasBoundaryBefore() function
275 virtual UBool hasBoundaryBefore(UChar32 c) const { in hasBoundaryBefore() function
311 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasFCDBoundaryBefore(c); } in hasBoundaryBefore() function
Dfilterednormalizer2.cpp251 FilteredNormalizer2::hasBoundaryBefore(UChar32 c) const { in hasBoundaryBefore() function in FilteredNormalizer2
252 return !set.contains(c) || norm2.hasBoundaryBefore(c); in hasBoundaryBefore()
Dunorm.cpp142 if(n2->hasBoundaryBefore(c)) { in _iterate()
155 if(n2->hasBoundaryBefore(c)) { in _iterate()
Dnormlzr.cpp484 if(fNorm2->hasBoundaryBefore(c=text->next32PostInc())) { in nextNormalize()
508 if(fNorm2->hasBoundaryBefore(c)) { in previousNormalize()
Dnormalizer2.cpp117 virtual UBool hasBoundaryBefore(UChar32) const { return TRUE; } in hasBoundaryBefore() function in NoopNormalizer2
484 return ((const Normalizer2 *)norm2)->hasBoundaryBefore(c); in unorm2_hasBoundaryBefore()
Ddictbe.cpp1207 if (nfkcNorm2->hasBoundaryBefore(c)) { in divideUpDictionaryRange()
/external/icu/icu4c/source/i18n/
Dnortrans.cpp146 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start))); in handleTransliterate()
Dcollationruleparser.cpp276 if(!nfc.hasBoundaryBefore(prefix0) || !nfc.hasBoundaryBefore(c)) { in parseRelationStrings()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DNormalizationTransliterator.java105 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start))); in handleTransliterate()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationRuleParser.java311 if(!nfc.hasBoundaryBefore(prefix0) || !nfc.hasBoundaryBefore(c)) { in parseRelationStrings()