Home
last modified time | relevance | path

Searched refs:matchesIndexValue (Results 1 – 25 of 36) sorted by relevance

12

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DQuantifier.java97 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in Quantifier
98 return (minCount == 0) || matcher.matchesIndexValue(v); in matchesIndexValue()
DUnicodeMatcher.java127 public abstract boolean matchesIndexValue(int v); in matchesIndexValue() method
DUnicodeSet.java865 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in UnicodeSet
/external/icu/android_icu4j/src/main/java/android/icu/text/
DQuantifier.java98 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in Quantifier
99 return (minCount == 0) || matcher.matchesIndexValue(v); in matchesIndexValue()
DStringMatcher.java204 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in StringMatcher
210 return (m == null) ? ((c & 0xFF) == v) : m.matchesIndexValue(v); in matchesIndexValue()
DUnicodeMatcher.java120 public abstract boolean matchesIndexValue(int v); in matchesIndexValue() method
DTransliterationRule.java258 final boolean matchesIndexValue(int v) { in matchesIndexValue() method in TransliterationRule
262 return (m != null) ? m.matchesIndexValue(v) : true; in matchesIndexValue()
DTransliterationRuleSet.java132 if (r.matchesIndexValue(x)) { in freeze()
DUnicodeSet.java840 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in UnicodeSet
/external/icu/icu4c/source/i18n/
Dquant.cpp125 UBool Quantifier::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in Quantifier
126 return (minCount == 0) || matcher->toMatcher()->matchesIndexValue(v); in matchesIndexValue()
Dstrmatch.cpp190 UBool StringMatcher::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in StringMatcher
196 return (m == 0) ? ((c & 0xFF) == v) : m->matchesIndexValue(v); in matchesIndexValue()
Dquant.h89 virtual UBool matchesIndexValue(uint8_t v) const;
Dstrmatch.h141 virtual UBool matchesIndexValue(uint8_t v) const;
Drbt_rule.h241 UBool matchesIndexValue(uint8_t v) const;
Drbt_rule.cpp239 UBool TransliterationRule::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in TransliterationRule
243 return (m != NULL) ? m->matchesIndexValue(v) : TRUE; in matchesIndexValue()
Drbt_set.cpp325 if (r->matchesIndexValue((uint8_t)x)) { in freeze()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DStringMatcher.java203 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in StringMatcher
209 return (m == null) ? ((c & 0xFF) == v) : m.matchesIndexValue(v); in matchesIndexValue()
DTransliterationRule.java257 final boolean matchesIndexValue(int v) { in matchesIndexValue() method in TransliterationRule
261 return (m != null) ? m.matchesIndexValue(v) : true; in matchesIndexValue()
DTransliterationRuleSet.java131 if (r.matchesIndexValue(x)) { in freeze()
/external/icu/icu4c/source/common/unicode/
Dunimatch.h150 virtual UBool matchesIndexValue(uint8_t v) const = 0;
Duniset.h1497 virtual UBool matchesIndexValue(uint8_t v) const;
/external/icu/icu4c/source/test/intltest/
Dtransapi.cpp725 virtual UBool matchesIndexValue(uint8_t /*v*/) const { in matchesIndexValue() function in TestFilter1
746 virtual UBool matchesIndexValue(uint8_t /*v*/) const { in matchesIndexValue() function in TestFilter2
767 virtual UBool matchesIndexValue(uint8_t /*v*/) const { in matchesIndexValue() function in TestFilter3
/external/icu/icu4c/source/common/
Duniset.cpp583 UBool UnicodeSet::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in UnicodeSet
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DTransliteratorTest.java510 public boolean matchesIndexValue(int v) { in TestFiltering()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DTransliteratorTest.java506 public boolean matchesIndexValue(int v) { in TestFiltering()

12