Home
last modified time | relevance | path

Searched refs:UnicodeMatcher (Results 1 – 25 of 56) sorted by relevance

123

/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DTransliterationRule.java91 UnicodeMatcher[] segments;
156 UnicodeMatcher[] segs, in TransliterationRule()
260 UnicodeMatcher m = (key != null) ? key : postContext; in matchesIndexValue()
410 if (match != UnicodeMatcher.U_MATCH) { in matchAndReplace()
411 return UnicodeMatcher.U_MISMATCH; in matchAndReplace()
422 return UnicodeMatcher.U_MISMATCH; in matchAndReplace()
431 if (match != UnicodeMatcher.U_MATCH) { in matchAndReplace()
444 return UnicodeMatcher.U_PARTIAL_MATCH; in matchAndReplace()
448 if (match != UnicodeMatcher.U_MATCH) { in matchAndReplace()
459 return UnicodeMatcher.U_MISMATCH; in matchAndReplace()
[all …]
DStringMatcher.java27 class StringMatcher implements UnicodeMatcher, UnicodeReplacer {
113 UnicodeMatcher subm = data.lookupMatcher(keyChar); in matches()
144 UnicodeMatcher subm = data.lookupMatcher(keyChar); in matches()
183 UnicodeMatcher m = data.lookupMatcher(keyChar); in toPattern()
208 UnicodeMatcher m = data.lookupMatcher(c); in matchesIndexValue()
222 UnicodeMatcher matcher = data.lookupMatcher(ch); in addMatchSetTo()
DRuleBasedTransliterator.java413 public UnicodeMatcher lookupMatcher(int standIn) { in lookupMatcher()
416 ? (UnicodeMatcher) variables[i] : null; in lookupMatcher()
DTransliterationRuleSet.java195 case UnicodeMatcher.U_MATCH: in transliterate()
202 case UnicodeMatcher.U_PARTIAL_MATCH: in transliterate()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DTransliterationRule.java92 UnicodeMatcher[] segments;
157 UnicodeMatcher[] segs, in TransliterationRule()
261 UnicodeMatcher m = (key != null) ? key : postContext; in matchesIndexValue()
411 if (match != UnicodeMatcher.U_MATCH) { in matchAndReplace()
412 return UnicodeMatcher.U_MISMATCH; in matchAndReplace()
423 return UnicodeMatcher.U_MISMATCH; in matchAndReplace()
432 if (match != UnicodeMatcher.U_MATCH) { in matchAndReplace()
445 return UnicodeMatcher.U_PARTIAL_MATCH; in matchAndReplace()
449 if (match != UnicodeMatcher.U_MATCH) { in matchAndReplace()
460 return UnicodeMatcher.U_MISMATCH; in matchAndReplace()
[all …]
DStringMatcher.java28 class StringMatcher implements UnicodeMatcher, UnicodeReplacer {
114 UnicodeMatcher subm = data.lookupMatcher(keyChar); in matches()
145 UnicodeMatcher subm = data.lookupMatcher(keyChar); in matches()
184 UnicodeMatcher m = data.lookupMatcher(keyChar); in toPattern()
209 UnicodeMatcher m = data.lookupMatcher(c); in matchesIndexValue()
223 UnicodeMatcher matcher = data.lookupMatcher(ch); in addMatchSetTo()
DQuantifier.java11 class Quantifier implements UnicodeMatcher {
13 private UnicodeMatcher matcher;
24 public Quantifier(UnicodeMatcher theMatcher, in Quantifier()
DRuleBasedTransliterator.java415 public UnicodeMatcher lookupMatcher(int standIn) { in lookupMatcher()
418 ? (UnicodeMatcher) variables[i] : null; in lookupMatcher()
DTransliterationRuleSet.java196 case UnicodeMatcher.U_MATCH: in transliterate()
203 case UnicodeMatcher.U_PARTIAL_MATCH: in transliterate()
DSymbolTable.java62 UnicodeMatcher lookupMatcher(int ch); in lookupMatcher()
DUnicodeMatcher.java14 public interface UnicodeMatcher { interface
/external/icu/icu4c/source/i18n/
Dstrmatch.cpp40 UnicodeMatcher(o), in StringMatcher()
67 UnicodeMatcher* StringMatcher::toMatcher() const { in toMatcher()
69 UnicodeMatcher *nonconst_base = static_cast<UnicodeMatcher *>(nonconst_this); in toMatcher()
98 UnicodeMatcher* subm = data->lookupMatcher(keyChar); in matches()
129 UnicodeMatcher* subm = data->lookupMatcher(keyChar); in matches()
170 const UnicodeMatcher* m = data->lookupMatcher(keyChar); in toPattern()
195 const UnicodeMatcher *m = data->lookupMatcher(c); in matchesIndexValue()
206 const UnicodeMatcher* matcher = data->lookupMatcher(ch); in addMatchSetTo()
Dquant.cpp34 UnicodeMatcher(o), in Quantifier()
56 UnicodeMatcher* Quantifier::toMatcher() const { in toMatcher()
58 UnicodeMatcher *nonconst_base = static_cast<UnicodeMatcher *>(nonconst_this); in toMatcher()
Drbt_data.h25 class UnicodeMatcher; variable
132 UnicodeMatcher* lookupMatcher(UChar32 standIn) const;
Dquant.h22 class Quantifier : public UnicodeFunctor, public UnicodeMatcher {
40 virtual UnicodeMatcher* toMatcher() const;
Dstrmatch.h42 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer {
86 virtual UnicodeMatcher* toMatcher() const;
/external/icu/icu4c/source/common/
Dunifilt.cpp21 UnicodeMatcher::~UnicodeMatcher() {} in UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION()
29 UnicodeMatcher* UnicodeFilter::toMatcher() const { in toMatcher()
Dutil.h25 class UnicodeMatcher; variable
227 const UnicodeMatcher* matcher,
Dunifunct.cpp16 UnicodeMatcher* UnicodeFunctor::toMatcher() const { in toMatcher()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DQuantifier.java10 class Quantifier implements UnicodeMatcher {
12 private UnicodeMatcher matcher;
23 public Quantifier(UnicodeMatcher theMatcher, in Quantifier()
/external/icu/icu4c/source/common/unicode/
Dunifunct.h23 class UnicodeMatcher; variable
61 virtual UnicodeMatcher* toMatcher() const;
Dunifilt.h59 class U_COMMON_API UnicodeFilter : public UnicodeFunctor, public UnicodeMatcher {
82 virtual UnicodeMatcher* toMatcher() const;
Dunimatch.h68 class U_COMMON_API UnicodeMatcher /* not : public UObject because this is an interface/mixin class …
75 virtual ~UnicodeMatcher();
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUtilityExtensions.java13 import android.icu.text.UnicodeMatcher;
42 UnicodeMatcher matcher, in appendToRule()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/impl/
DUtilityExtensions.java12 import com.ibm.icu.text.UnicodeMatcher;
40 UnicodeMatcher matcher, in appendToRule()

123