Home
last modified time | relevance | path

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

/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.h211 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasDecompBoundary(c, TRUE); } in hasBoundaryBefore()
212 virtual UBool hasBoundaryAfter(UChar32 c) const { return impl.hasDecompBoundary(c, FALSE); } in hasBoundaryAfter()
Dnormalizer2impl.h466 UBool hasDecompBoundary(UChar32 c, UBool before) const;
Dnormalizer2impl.cpp721 UBool Normalizer2Impl::hasDecompBoundary(UChar32 c, UBool before) const { in hasDecompBoundary() function in Normalizer2Impl