Home
last modified time | relevance | path

Searched refs:StringMatcher (Results 1 – 25 of 31) sorted by relevance

12

/third_party/node/deps/icu-small/source/i18n/
Dstrmatch.cpp25 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringMatcher) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() argument
27 StringMatcher::StringMatcher(const UnicodeString& theString, in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
40 StringMatcher::StringMatcher(const StringMatcher& o) : in StringMatcher() function in StringMatcher
55 StringMatcher::~StringMatcher() { in ~StringMatcher()
61 StringMatcher* StringMatcher::clone() const { in clone()
62 return new StringMatcher(*this); in clone()
69 UnicodeMatcher* StringMatcher::toMatcher() const { in toMatcher()
70 StringMatcher *nonconst_this = const_cast<StringMatcher *>(this); in toMatcher()
80 UnicodeReplacer* StringMatcher::toReplacer() const { in toReplacer()
81 StringMatcher *nonconst_this = const_cast<StringMatcher *>(this); in toReplacer()
[all …]
Dstrmatch.h44 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer {
60 StringMatcher(const UnicodeString& string,
70 StringMatcher(const StringMatcher& o);
75 virtual ~StringMatcher();
81 virtual StringMatcher* clone() const override;
Drbt_rule.h26 class StringMatcher; variable
71 StringMatcher *anteContext;
76 StringMatcher *key;
82 StringMatcher *postContext;
301 friend class StringMatcher;
Drbt_rule.cpp121 anteContext = new StringMatcher(pattern, 0, anteContextLength, in TransliterationRule()
132 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength, in TransliterationRule()
144 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(), in TransliterationRule()
366 ((StringMatcher*) segments[i])->resetMatch(); in matchAndReplace()
Drbt_pars.h34 class StringMatcher; variable
299 void setSegmentObject(int32_t seg, StringMatcher* adopted, UErrorCode& status);
/third_party/skia/third_party/externals/icu/source/i18n/
Dstrmatch.cpp25 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringMatcher) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() argument
27 StringMatcher::StringMatcher(const UnicodeString& theString, in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
40 StringMatcher::StringMatcher(const StringMatcher& o) : in StringMatcher() function in StringMatcher
55 StringMatcher::~StringMatcher() { in ~StringMatcher()
61 StringMatcher* StringMatcher::clone() const { in clone()
62 return new StringMatcher(*this); in clone()
69 UnicodeMatcher* StringMatcher::toMatcher() const { in toMatcher()
70 StringMatcher *nonconst_this = const_cast<StringMatcher *>(this); in toMatcher()
80 UnicodeReplacer* StringMatcher::toReplacer() const { in toReplacer()
81 StringMatcher *nonconst_this = const_cast<StringMatcher *>(this); in toReplacer()
[all …]
Dstrmatch.h44 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer {
60 StringMatcher(const UnicodeString& string,
70 StringMatcher(const StringMatcher& o);
75 virtual ~StringMatcher();
81 virtual StringMatcher* clone() const;
Drbt_rule.h26 class StringMatcher; variable
71 StringMatcher *anteContext;
76 StringMatcher *key;
82 StringMatcher *postContext;
301 friend class StringMatcher;
Drbt_rule.cpp121 anteContext = new StringMatcher(pattern, 0, anteContextLength, in TransliterationRule()
132 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength, in TransliterationRule()
144 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(), in TransliterationRule()
366 ((StringMatcher*) segments[i])->resetMatch(); in matchAndReplace()
Drbt_pars.h34 class StringMatcher; variable
299 void setSegmentObject(int32_t seg, StringMatcher* adopted, UErrorCode& status);
/third_party/icu/icu4c/source/i18n/
Dstrmatch.cpp25 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringMatcher) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() argument
27 StringMatcher::StringMatcher(const UnicodeString& theString, in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
40 StringMatcher::StringMatcher(const StringMatcher& o) : in StringMatcher() function in StringMatcher
55 StringMatcher::~StringMatcher() { in ~StringMatcher()
61 StringMatcher* StringMatcher::clone() const { in clone()
62 return new StringMatcher(*this); in clone()
69 UnicodeMatcher* StringMatcher::toMatcher() const { in toMatcher()
70 StringMatcher *nonconst_this = const_cast<StringMatcher *>(this); in toMatcher()
80 UnicodeReplacer* StringMatcher::toReplacer() const { in toReplacer()
81 StringMatcher *nonconst_this = const_cast<StringMatcher *>(this); in toReplacer()
[all …]
Dstrmatch.h44 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer {
60 StringMatcher(const UnicodeString& string,
70 StringMatcher(const StringMatcher& o);
75 virtual ~StringMatcher();
81 virtual StringMatcher* clone() const override;
Drbt_rule.h26 class StringMatcher; variable
71 StringMatcher *anteContext;
76 StringMatcher *key;
82 StringMatcher *postContext;
301 friend class StringMatcher;
Drbt_rule.cpp121 anteContext = new StringMatcher(pattern, 0, anteContextLength, in TransliterationRule()
132 key = new StringMatcher(pattern, anteContextLength, anteContextLength + keyLength, in TransliterationRule()
144 postContext = new StringMatcher(pattern, anteContextLength + keyLength, pattern.length(), in TransliterationRule()
366 ((StringMatcher*) segments[i])->resetMatch(); in matchAndReplace()
Drbt_pars.h34 class StringMatcher; variable
299 void setSegmentObject(int32_t seg, StringMatcher* adopted, UErrorCode& status);
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DTransliterationRule.java58 private StringMatcher anteContext;
63 private StringMatcher key;
69 private StringMatcher postContext;
204 anteContext = new StringMatcher(pattern.substring(0, anteContextLength), in TransliterationRule()
210 … key = new StringMatcher(pattern.substring(anteContextLength, anteContextLength + keyLength), in TransliterationRule()
217 postContext = new StringMatcher(pattern.substring(anteContextLength + keyLength), in TransliterationRule()
383 ((StringMatcher) segments[i]).resetMatch(); in matchAndReplace()
DStringMatcher.java29 class StringMatcher implements UnicodeMatcher, UnicodeReplacer { class
68 public StringMatcher(String theString, in StringMatcher() method in StringMatcher
90 public StringMatcher(String theString, in StringMatcher() method in StringMatcher
DTransliteratorParser.java86 private List<StringMatcher> segmentObjects;
580 StringMatcher m = in parseSection()
581 new StringMatcher(buf.substring(bufSegStart), in parseSection()
718 m = new StringMatcher(buf.toString(), qstart, qlimit, in parseSection()
1508 public void setSegmentObject(int seg, StringMatcher obj) { in setSegmentObject()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DTransliterationRule.java59 private StringMatcher anteContext;
64 private StringMatcher key;
70 private StringMatcher postContext;
205 anteContext = new StringMatcher(pattern.substring(0, anteContextLength), in TransliterationRule()
211 … key = new StringMatcher(pattern.substring(anteContextLength, anteContextLength + keyLength), in TransliterationRule()
218 postContext = new StringMatcher(pattern.substring(anteContextLength + keyLength), in TransliterationRule()
384 ((StringMatcher) segments[i]).resetMatch(); in matchAndReplace()
DStringMatcher.java30 class StringMatcher implements UnicodeMatcher, UnicodeReplacer { class
69 public StringMatcher(String theString, in StringMatcher() method in StringMatcher
91 public StringMatcher(String theString, in StringMatcher() method in StringMatcher
DTransliteratorParser.java87 private List<StringMatcher> segmentObjects;
581 StringMatcher m = in parseSection()
582 new StringMatcher(buf.substring(bufSegStart), in parseSection()
719 m = new StringMatcher(buf.toString(), qstart, qlimit, in parseSection()
1147 segmentObjects = new ArrayList<StringMatcher>(); in parseRule()
1509 public void setSegmentObject(int seg, StringMatcher obj) { in setSegmentObject()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
DStringMatcher.h30 class StringMatcher {
40 StringMatcher(StringRef strVariableName, in StringMatcher() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DStringMatcher.cpp29 StringMatcher::StringPair*> &Matches) { in FindFirstNonCommonLetter()
48 bool StringMatcher::EmitStringMatcherForChar( in EmitStringMatcherForChar()
131 void StringMatcher::Emit(unsigned Indent, bool IgnoreDuplicates) const { in Emit()
DCMakeLists.txt7 StringMatcher.cpp
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/
DDigitSequenceMatcher.java115 return new StringMatcher(data); in create()
209 private static final class StringMatcher extends DigitSequenceMatcher { class in DigitSequenceMatcher
260 private StringMatcher(String bytes) { in StringMatcher() method in DigitSequenceMatcher.StringMatcher

12