Searched refs:hasCompBoundaryBefore (Results 1 – 7 of 7) sorted by relevance
/external/icu/icu4c/source/common/ |
D | normalizer2impl.h | 471 UBool hasCompBoundaryBefore(UChar32 c) const { in hasCompBoundaryBefore() function 472 return c<minCompNoMaybeCP || hasCompBoundaryBefore(c, getNorm16(c)); in hasCompBoundaryBefore() 576 UBool hasCompBoundaryBefore(UChar32 c, uint16_t norm16) const;
|
D | normalizer2impl.cpp | 1306 if(hasCompBoundaryBefore(c, norm16)) { in compose() 1491 UBool Normalizer2Impl::hasCompBoundaryBefore(UChar32 c, uint16_t norm16) const { in hasCompBoundaryBefore() function in Normalizer2Impl 1556 } while(!hasCompBoundaryBefore(iter.codePoint, norm16)); in findPreviousCompBoundary() 1567 } while(!hasCompBoundaryBefore(iter.codePoint, norm16)); in findNextCompBoundary()
|
D | norm2allmodes.h | 278 return impl.hasCompBoundaryBefore(c); in hasBoundaryBefore()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Normalizer2Impl.java | 1262 if(hasCompBoundaryBefore(c, norm16)) { in compose() 1611 public boolean hasCompBoundaryBefore(int c) { in hasCompBoundaryBefore() method 1612 return c<minCompNoMaybeCP || hasCompBoundaryBefore(c, getNorm16(c)); in hasCompBoundaryBefore() 2101 private boolean hasCompBoundaryBefore(int c, int norm16) { in hasCompBoundaryBefore() method 2127 if(hasCompBoundaryBefore(c)) { in findPreviousCompBoundary() 2139 if(hasCompBoundaryBefore(c, norm16)) { in findNextCompBoundary()
|
D | Norm2AllModes.java | 238 public boolean hasBoundaryBefore(int c) { return impl.hasCompBoundaryBefore(c); } in hasBoundaryBefore()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Normalizer2Impl.java | 1266 if(hasCompBoundaryBefore(c, norm16)) { in compose() 1615 public boolean hasCompBoundaryBefore(int c) { in hasCompBoundaryBefore() method 1616 return c<minCompNoMaybeCP || hasCompBoundaryBefore(c, getNorm16(c)); in hasCompBoundaryBefore() 2105 private boolean hasCompBoundaryBefore(int c, int norm16) { in hasCompBoundaryBefore() method 2131 if(hasCompBoundaryBefore(c)) { in findPreviousCompBoundary() 2143 if(hasCompBoundaryBefore(c, norm16)) { in findNextCompBoundary()
|
D | Norm2AllModes.java | 242 public boolean hasBoundaryBefore(int c) { return impl.hasCompBoundaryBefore(c); } in hasBoundaryBefore()
|