Searched defs:hasBoundaryBefore (Results 1 - 10 of 10) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DFilteredNormalizer2.java187 public boolean hasBoundaryBefore(int c) { method in class:FilteredNormalizer2
188 return !set.contains(c) || norm2.hasBoundaryBefore(c);
H A DNormalizer2.java46 * The hasBoundaryBefore(), hasBoundaryAfter() and isInert() functions test whether
381 public abstract boolean hasBoundaryBefore(int c); method in class:Normalizer2
393 * Note that this operation may be significantly slower than hasBoundaryBefore().
408 * Note that this operation may be significantly slower than hasBoundaryBefore().
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DFilteredNormalizer2.java199 public boolean hasBoundaryBefore(int c) { method in class:FilteredNormalizer2
200 return !set.contains(c) || norm2.hasBoundaryBefore(c);
H A DNormalizer2.java45 * The hasBoundaryBefore(), hasBoundaryAfter() and isInert() functions test whether
405 public abstract boolean hasBoundaryBefore(int c); method in class:Normalizer2
417 * Note that this operation may be significantly slower than hasBoundaryBefore().
433 * Note that this operation may be significantly slower than hasBoundaryBefore().
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DNorm2AllModes.java77 public boolean hasBoundaryBefore(int c) { return true; } method in class:Norm2AllModes.NoopNormalizer2
192 public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundaryBefore(c); } method in class:Norm2AllModes.DecomposeNormalizer2
242 public boolean hasBoundaryBefore(int c) { return impl.hasCompBoundaryBefore(c); } method in class:Norm2AllModes.ComposeNormalizer2
278 public boolean hasBoundaryBefore(int c) { return impl.hasFCDBoundaryBefore(c); } method in class:Norm2AllModes.FCDNormalizer2
/external/icu/icu4c/source/common/
H A Dfilterednormalizer2.cpp326 FilteredNormalizer2::hasBoundaryBefore(UChar32 c) const { function in class:FilteredNormalizer2
327 return !set.contains(c) || norm2.hasBoundaryBefore(c);
H A Dnorm2allmodes.h215 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasDecompBoundaryBefore(c); } function in class:DecomposeNormalizer2
303 virtual UBool hasBoundaryBefore(UChar32 c) const U_OVERRIDE {
339 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasFCDBoundaryBefore(c); } function in class:FCDNormalizer2
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNorm2AllModes.java73 public boolean hasBoundaryBefore(int c) { return true; } method in class:Norm2AllModes.NoopNormalizer2
188 public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundaryBefore(c); } 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/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DBasicTest.java2845 assertFalse("soft hyphen has no boundary before", n2.hasBoundaryBefore(0xad));
2964 public boolean hasBoundaryBefore(int c) { return false; } method in class:BasicTest.TestNormalizer2
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DBasicTest.java2842 assertFalse("soft hyphen has no boundary before", n2.hasBoundaryBefore(0xad));
2961 public boolean hasBoundaryBefore(int c) { return false; } method in class:BasicTest.TestNormalizer2

Completed in 281 milliseconds