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 61 * The hasBoundaryBefore(), hasBoundaryAfter() and isInert() functions test whether
400 virtual UBool hasBoundaryBefore(UChar32 c) const = 0;
411 * Note that this operation may be significantly slower than hasBoundaryBefore().
426 * Note that this operation may be significantly slower than hasBoundaryBefore().
624 virtual UBool hasBoundaryBefore(UChar32 c) const;
  /external/icu4c/i18n/
nortrans.cpp 146 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
  /external/icu4c/common/
filterednormalizer2.cpp 251 FilteredNormalizer2::hasBoundaryBefore(UChar32 c) const {
252 return !set.contains(c) || norm2.hasBoundaryBefore(c);
unorm.cpp 144 if(n2->hasBoundaryBefore(c)) {
157 if(n2->hasBoundaryBefore(c)) {
normalizer2.cpp 115 virtual UBool hasBoundaryBefore(UChar32) const { return TRUE; }
309 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasDecompBoundary(c, TRUE); }
375 virtual UBool hasBoundaryBefore(UChar32 c) const {
413 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasFCDBoundaryBefore(c); }
    [all...]
normlzr.cpp 484 if(fNorm2->hasBoundaryBefore(c=text->next32PostInc())) {
508 if(fNorm2->hasBoundaryBefore(c)) {

Completed in 2845 milliseconds