HomeSort by relevance Sort by last modified time
    Searched refs:hasBoundaryAfter (Results 1 - 4 of 4) sorted by null

  /external/icu4c/common/unicode/
normalizer2.h 60 * The hasBoundaryBefore(), hasBoundaryAfter() and isInert() functions test whether
265 virtual UBool hasBoundaryAfter(UChar32 c) const = 0;
435 virtual UBool hasBoundaryAfter(UChar32 c) const;
  /external/icu4c/i18n/
nortrans.cpp 146 if(start == limit && isIncremental && !fNorm2.hasBoundaryAfter(c)) {
  /external/icu4c/common/
filterednormalizer2.cpp 234 FilteredNormalizer2::hasBoundaryAfter(UChar32 c) const {
235 return !set.contains(c) || norm2.hasBoundaryAfter(c);
normalizer2.cpp 90 virtual UBool hasBoundaryAfter(UChar32) const { return TRUE; }
239 virtual UBool hasBoundaryAfter(UChar32 c) const { return impl.hasDecompBoundary(c, FALSE); }
303 virtual UBool hasBoundaryAfter(UChar32 c) const {
335 virtual UBool hasBoundaryAfter(UChar32 c) const { return impl.hasFCDBoundaryAfter(c); }
774 return ((const Normalizer2 *)norm2)->hasBoundaryAfter(c);

Completed in 3018 milliseconds