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

1 2

  /external/icu/icu4c/source/common/unicode/
normalizer2.h 63 * 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().
620 virtual UBool hasBoundaryBefore(UChar32 c) const;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Norm2AllModes.java 77 public boolean hasBoundaryBefore(int c) { return true; }
192 public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundary(c, true); }
242 public boolean hasBoundaryBefore(int c) { return impl.hasCompBoundaryBefore(c); }
278 public boolean hasBoundaryBefore(int c) { return impl.hasFCDBoundaryBefore(c); }
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Normalizer2.java 46 * The hasBoundaryBefore(), hasBoundaryAfter() and isInert() functions test whether
379 public abstract boolean hasBoundaryBefore(int c);
391 * Note that this operation may be significantly slower than hasBoundaryBefore().
406 * Note that this operation may be significantly slower than hasBoundaryBefore().
FilteredNormalizer2.java 187 public boolean hasBoundaryBefore(int c) {
188 return !set.contains(c) || norm2.hasBoundaryBefore(c);
NormalizationTransliterator.java 115 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
Normalizer.java     [all...]
StringSearch.java     [all...]
  /external/icu/icu4c/source/i18n/
nortrans.cpp 148 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
collationruleparser.cpp 278 if(!nfc.hasBoundaryBefore(prefix0) || !nfc.hasBoundaryBefore(c)) {
usearch.cpp     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Norm2AllModes.java 73 public boolean hasBoundaryBefore(int c) { return true; }
188 public boolean hasBoundaryBefore(int c) { return impl.hasDecompBoundary(c, true); }
238 public boolean hasBoundaryBefore(int c) { return impl.hasCompBoundaryBefore(c); }
274 public boolean hasBoundaryBefore(int c) { return impl.hasFCDBoundaryBefore(c); }
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Normalizer2.java 45 * The hasBoundaryBefore(), hasBoundaryAfter() and isInert() functions test whether
403 public abstract boolean hasBoundaryBefore(int c);
415 * Note that this operation may be significantly slower than hasBoundaryBefore().
431 * Note that this operation may be significantly slower than hasBoundaryBefore().
FilteredNormalizer2.java 199 public boolean hasBoundaryBefore(int c) {
200 return !set.contains(c) || norm2.hasBoundaryBefore(c);
Normalizer.java     [all...]
  /external/icu/icu4c/source/common/
filterednormalizer2.cpp 253 FilteredNormalizer2::hasBoundaryBefore(UChar32 c) const {
254 return !set.contains(c) || norm2.hasBoundaryBefore(c);
norm2allmodes.h 213 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasDecompBoundary(c, TRUE); }
277 virtual UBool hasBoundaryBefore(UChar32 c) const {
313 virtual UBool hasBoundaryBefore(UChar32 c) const { return impl.hasFCDBoundaryBefore(c); }
unorm.cpp 144 if(n2->hasBoundaryBefore(c)) {
157 if(n2->hasBoundaryBefore(c)) {
normalizer2.cpp 120 virtual UBool hasBoundaryBefore(UChar32) const { return TRUE; }
487 return ((const Normalizer2 *)norm2)->hasBoundaryBefore(c);
normlzr.cpp 486 if(fNorm2->hasBoundaryBefore(c=text->next32PostInc())) {
510 if(fNorm2->hasBoundaryBefore(c)) {
dictbe.cpp     [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
NormalizationTransliterator.java 114 } while(start < limit && !norm2.hasBoundaryBefore(c = text.char32At(start)));
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRuleParser.java 317 if(!nfc.hasBoundaryBefore(prefix0) || !nfc.hasBoundaryBefore(c)) {
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRuleParser.java 313 if(!nfc.hasBoundaryBefore(prefix0) || !nfc.hasBoundaryBefore(c)) {
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
StringSearch.java     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
BasicTest.java     [all...]

Completed in 627 milliseconds

1 2