Home
last modified time | relevance | path

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

12

/external/icu/android_icu4j/src/main/java/android/icu/text/
DQuantifier.java100 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in Quantifier
101 return (minCount == 0) || matcher.matchesIndexValue(v); in matchesIndexValue()
DStringMatcher.java209 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in StringMatcher
215 return (m == null) ? ((c & 0xFF) == v) : m.matchesIndexValue(v); in matchesIndexValue()
DUnicodeMatcher.java122 public abstract boolean matchesIndexValue(int v); in matchesIndexValue() method
DTransliterationRule.java260 final boolean matchesIndexValue(int v) { in matchesIndexValue() method in TransliterationRule
264 return (m != null) ? m.matchesIndexValue(v) : true; in matchesIndexValue()
DTransliterationRuleSet.java134 if (r.matchesIndexValue(x)) { in freeze()
DUnicodeSet.java848 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in UnicodeSet
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DQuantifier.java99 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in Quantifier
100 return (minCount == 0) || matcher.matchesIndexValue(v); in matchesIndexValue()
DUnicodeMatcher.java129 public abstract boolean matchesIndexValue(int v); in matchesIndexValue() method
DUnicodeSet.java873 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in UnicodeSet
/external/icu/icu4c/source/i18n/
Dquant.cpp127 UBool Quantifier::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in Quantifier
128 return (minCount == 0) || matcher->toMatcher()->matchesIndexValue(v); in matchesIndexValue()
Dstrmatch.cpp192 UBool StringMatcher::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in StringMatcher
198 return (m == 0) ? ((c & 0xFF) == v) : m->matchesIndexValue(v); in matchesIndexValue()
Dquant.h91 virtual UBool matchesIndexValue(uint8_t v) const;
Drbt_rule.h243 UBool matchesIndexValue(uint8_t v) const;
Dstrmatch.h143 virtual UBool matchesIndexValue(uint8_t v) const;
Drbt_rule.cpp241 UBool TransliterationRule::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in TransliterationRule
245 return (m != NULL) ? m->matchesIndexValue(v) : TRUE; in matchesIndexValue()
Drbt_set.cpp327 if (r->matchesIndexValue((uint8_t)x)) { in freeze()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DStringMatcher.java208 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in StringMatcher
214 return (m == null) ? ((c & 0xFF) == v) : m.matchesIndexValue(v); in matchesIndexValue()
DTransliterationRule.java259 final boolean matchesIndexValue(int v) { in matchesIndexValue() method in TransliterationRule
263 return (m != null) ? m.matchesIndexValue(v) : true; in matchesIndexValue()
DTransliterationRuleSet.java133 if (r.matchesIndexValue(x)) { in freeze()
/external/icu/icu4c/source/common/unicode/
Dunimatch.h152 virtual UBool matchesIndexValue(uint8_t v) const = 0;
Duniset.h1508 virtual UBool matchesIndexValue(uint8_t v) const;
/external/icu/icu4c/source/test/intltest/
Dtransapi.cpp728 virtual UBool matchesIndexValue(uint8_t /*v*/) const { in matchesIndexValue() function in TestFilter1
749 virtual UBool matchesIndexValue(uint8_t /*v*/) const { in matchesIndexValue() function in TestFilter2
770 virtual UBool matchesIndexValue(uint8_t /*v*/) const { in matchesIndexValue() function in TestFilter3
/external/icu/icu4c/source/common/
Duniset.cpp537 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.java479 public boolean matchesIndexValue(int v) { in TestFiltering()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DTransliteratorTest.java476 public boolean matchesIndexValue(int v) { in TestFiltering()

12