Searched refs:hasCompBoundaryBefore (Results 1 – 5 of 5) sorted by relevance
/external/icu/icu4c/source/common/ |
D | normalizer2impl.h | 469 UBool hasCompBoundaryBefore(UChar32 c) const { in hasCompBoundaryBefore() function 470 return c<minCompNoMaybeCP || hasCompBoundaryBefore(c, getNorm16(c)); in hasCompBoundaryBefore() 574 UBool hasCompBoundaryBefore(UChar32 c, uint16_t norm16) const;
|
D | normalizer2impl.cpp | 1304 if(hasCompBoundaryBefore(c, norm16)) { in compose() 1489 UBool Normalizer2Impl::hasCompBoundaryBefore(UChar32 c, uint16_t norm16) const { in hasCompBoundaryBefore() function in Normalizer2Impl 1554 } while(!hasCompBoundaryBefore(iter.codePoint, norm16)); in findPreviousCompBoundary() 1565 } while(!hasCompBoundaryBefore(iter.codePoint, norm16)); in findNextCompBoundary()
|
D | norm2allmodes.h | 276 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()
|