Home
last modified time | relevance | path

Searched refs:hasDecompBoundary (Results 1 – 7 of 7) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DNorm2AllModes.java192 public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundary(c, true); } in hasBoundaryBefore()
194 public boolean hasBoundaryAfter(int c) { return impl.hasDecompBoundary(c, false); } in hasBoundaryAfter()
DNormalizer2Impl.java1579 public boolean hasDecompBoundary(int c, boolean before) { in hasDecompBoundary() method
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNorm2AllModes.java188 public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundary(c, true); } in hasBoundaryBefore()
190 public boolean hasBoundaryAfter(int c) { return impl.hasDecompBoundary(c, false); } in hasBoundaryAfter()
DNormalizer2Impl.java1575 public boolean hasDecompBoundary(int c, boolean before) { in hasDecompBoundary() method
/external/icu/icu4c/source/common/
Dnorm2allmodes.h213 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasDecompBoundary(c, TRUE); } in hasBoundaryBefore()
214 virtual UBool hasBoundaryAfter(UChar32 c) const { return impl.hasDecompBoundary(c, FALSE); } in hasBoundaryAfter()
Dnormalizer2impl.h468 UBool hasDecompBoundary(UChar32 c, UBool before) const;
Dnormalizer2impl.cpp723 UBool Normalizer2Impl::hasDecompBoundary(UChar32 c, UBool before) const { in hasDecompBoundary() function in Normalizer2Impl