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

/external/icu/icu4c/source/common/unicode/
H A Dnormalizer2.h61 * The hasBoundaryBefore(), hasBoundaryAfter() and isInert() functions test whether
398 virtual UBool hasBoundaryBefore(UChar32 c) const = 0;
409 * Note that this operation may be significantly slower than hasBoundaryBefore().
424 * Note that this operation may be significantly slower than hasBoundaryBefore().
618 virtual UBool hasBoundaryBefore(UChar32 c) const;
/external/icu/icu4c/source/i18n/
H A Dnortrans.cpp146 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
H A Dcollationruleparser.cpp276 if(!nfc.hasBoundaryBefore(prefix0) || !nfc.hasBoundaryBefore(c)) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNorm2AllModes.java71 public boolean hasBoundaryBefore(int c) { return true; } method in class:Norm2AllModes.NoopNormalizer2
188 public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundary(c, true); } method in class:Norm2AllModes.DecomposeNormalizer2
238 public boolean hasBoundaryBefore(int c) { return impl.hasCompBoundaryBefore(c); } method in class:Norm2AllModes.ComposeNormalizer2
274 public boolean hasBoundaryBefore(int c) { return impl.hasFCDBoundaryBefore(c); } method in class:Norm2AllModes.FCDNormalizer2
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNormalizer2.java43 * The hasBoundaryBefore(), hasBoundaryAfter() and isInert() functions test whether
401 public abstract boolean hasBoundaryBefore(int c); method in class:Normalizer2
413 * Note that this operation may be significantly slower than hasBoundaryBefore().
429 * Note that this operation may be significantly slower than hasBoundaryBefore().
H A DFilteredNormalizer2.java197 public boolean hasBoundaryBefore(int c) { method in class:FilteredNormalizer2
198 return !set.contains(c) || norm2.hasBoundaryBefore(c);
H A DNormalizer.java1824 if(norm2.hasBoundaryBefore(c)) {
1847 if(norm2.hasBoundaryBefore(c)) {
/external/icu/icu4c/source/common/
H A Dfilterednormalizer2.cpp251 FilteredNormalizer2::hasBoundaryBefore(UChar32 c) const { function in class:FilteredNormalizer2
252 return !set.contains(c) || norm2.hasBoundaryBefore(c);
H A Dnorm2allmodes.h211 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasDecompBoundary(c, TRUE); } function in class:DecomposeNormalizer2
275 virtual UBool hasBoundaryBefore(UChar32 c) const { function in class:ComposeNormalizer2
311 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasFCDBoundaryBefore(c); } function in class:FCDNormalizer2
H A Dunorm.cpp142 if(n2->hasBoundaryBefore(c)) {
155 if(n2->hasBoundaryBefore(c)) {
H A Dnormalizer2.cpp117 virtual UBool hasBoundaryBefore(UChar32) const { return TRUE; } function in class:NoopNormalizer2
484 return ((const Normalizer2 *)norm2)->hasBoundaryBefore(c);
H A Dnormlzr.cpp484 if(fNorm2->hasBoundaryBefore(c=text->next32PostInc())) {
508 if(fNorm2->hasBoundaryBefore(c)) {
H A Ddictbe.cpp1207 if (nfkcNorm2->hasBoundaryBefore(c)) {
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DNormalizationTransliterator.java105 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationRuleParser.java311 if(!nfc.hasBoundaryBefore(prefix0) || !nfc.hasBoundaryBefore(c)) {

Completed in 229 milliseconds