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

  /external/icu4c/common/unicode/
normalizer2.h 60 * The hasBoundaryBefore(), hasBoundaryAfter() and isInert() functions test whether
249 virtual UBool hasBoundaryBefore(UChar32 c) const = 0;
260 * Note that this operation may be significantly slower than hasBoundaryBefore().
275 * Note that this operation may be significantly slower than hasBoundaryBefore().
425 virtual UBool hasBoundaryBefore(UChar32 c) const;
  /external/icu4c/i18n/
nortrans.cpp 145 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
  /external/icu4c/common/
filterednormalizer2.cpp 229 FilteredNormalizer2::hasBoundaryBefore(UChar32 c) const {
230 return !set.contains(c) || norm2.hasBoundaryBefore(c);
normalizer2.cpp 89 virtual UBool hasBoundaryBefore(UChar32) const { return TRUE; }
238 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasDecompBoundary(c, TRUE); }
300 virtual UBool hasBoundaryBefore(UChar32 c) const {
334 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasFCDBoundaryBefore(c); }
769 return ((const Normalizer2 *)norm2)->hasBoundaryBefore(c);
normlzr.cpp 485 if(fNorm2->hasBoundaryBefore(c=text->next32PostInc())) {
509 if(fNorm2->hasBoundaryBefore(c)) {
unorm.cpp 517 if(n2->hasBoundaryBefore(c)) {
530 if(n2->hasBoundaryBefore(c)) {

Completed in 618 milliseconds