/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | Quantifier.java | 99 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in Quantifier 100 return (minCount == 0) || matcher.matchesIndexValue(v); in matchesIndexValue()
|
D | UnicodeMatcher.java | 129 public abstract boolean matchesIndexValue(int v); in matchesIndexValue() method
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | Quantifier.java | 100 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in Quantifier 101 return (minCount == 0) || matcher.matchesIndexValue(v); in matchesIndexValue()
|
D | UnicodeMatcher.java | 122 public abstract boolean matchesIndexValue(int v); in matchesIndexValue() method
|
D | StringMatcher.java | 209 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in StringMatcher 215 return (m == null) ? ((c & 0xFF) == v) : m.matchesIndexValue(v); in matchesIndexValue()
|
D | TransliterationRule.java | 260 final boolean matchesIndexValue(int v) { in matchesIndexValue() method in TransliterationRule 264 return (m != null) ? m.matchesIndexValue(v) : true; in matchesIndexValue()
|
D | TransliterationRuleSet.java | 134 if (r.matchesIndexValue(x)) { in freeze()
|
/external/icu/icu4c/source/i18n/ |
D | quant.cpp | 127 UBool Quantifier::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in Quantifier 128 return (minCount == 0) || matcher->toMatcher()->matchesIndexValue(v); in matchesIndexValue()
|
D | quant.h | 91 virtual UBool matchesIndexValue(uint8_t v) const;
|
D | strmatch.cpp | 192 UBool StringMatcher::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in StringMatcher 198 return (m == 0) ? ((c & 0xFF) == v) : m->matchesIndexValue(v); in matchesIndexValue()
|
D | strmatch.h | 143 virtual UBool matchesIndexValue(uint8_t v) const;
|
D | rbt_rule.h | 243 UBool matchesIndexValue(uint8_t v) const;
|
D | rbt_rule.cpp | 241 UBool TransliterationRule::matchesIndexValue(uint8_t v) const { in matchesIndexValue() function in TransliterationRule 245 return (m != NULL) ? m->matchesIndexValue(v) : TRUE; in matchesIndexValue()
|
D | rbt_set.cpp | 327 if (r->matchesIndexValue((uint8_t)x)) { in freeze()
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | StringMatcher.java | 208 public boolean matchesIndexValue(int v) { in matchesIndexValue() method in StringMatcher 214 return (m == null) ? ((c & 0xFF) == v) : m.matchesIndexValue(v); in matchesIndexValue()
|
D | TransliterationRule.java | 259 final boolean matchesIndexValue(int v) { in matchesIndexValue() method in TransliterationRule 263 return (m != null) ? m.matchesIndexValue(v) : true; in matchesIndexValue()
|
D | TransliterationRuleSet.java | 133 if (r.matchesIndexValue(x)) { in freeze()
|
/external/icu/icu4c/source/common/unicode/ |
D | unimatch.h | 153 virtual UBool matchesIndexValue(uint8_t v) const = 0;
|
D | uniset.h | 1512 virtual UBool matchesIndexValue(uint8_t v) const;
|
/external/icu/libicu/cts_headers/unicode/ |
D | unimatch.h | 153 virtual UBool matchesIndexValue(uint8_t v) const = 0;
|
D | uniset.h | 1512 virtual UBool matchesIndexValue(uint8_t v) const;
|
/external/icu/libicu/cts_headers/ |
D | quant.h | 91 virtual UBool matchesIndexValue(uint8_t v) const;
|
D | strmatch.h | 143 virtual UBool matchesIndexValue(uint8_t v) const;
|
D | rbt_rule.h | 243 UBool matchesIndexValue(uint8_t v) const;
|
/external/icu/icu4c/source/test/intltest/ |
D | transapi.cpp | 729 virtual UBool matchesIndexValue(uint8_t /*v*/) const { in matchesIndexValue() function in TestFilter1 750 virtual UBool matchesIndexValue(uint8_t /*v*/) const { in matchesIndexValue() function in TestFilter2 771 virtual UBool matchesIndexValue(uint8_t /*v*/) const { in matchesIndexValue() function in TestFilter3
|