Home
last modified time | relevance | path

Searched refs:StringMatcher (Results 1 - 25 of 30) sorted by relevance

12

/third_party/icu/icu4c/source/i18n/
H A Dstrmatch.cpp25 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringMatcher)
27 StringMatcher::StringMatcher(const UnicodeString& theString, in StringMatcher() function in StringMatcher
40 StringMatcher::StringMatcher(const StringMatcher& o) : in StringMatcher() function in StringMatcher
55 StringMatcher::~StringMatcher() { in ~StringMatcher()
61 StringMatcher* StringMatcher
[all...]
H A Dstrmatch.h37 * A StringMatcher may represent a segment, in which case it has a
41 * A StringMatcher that is not a segment should not be used as a
44 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer { class
60 StringMatcher(const UnicodeString& string,
70 StringMatcher(const StringMatcher& o);
75 virtual ~StringMatcher();
81 virtual StringMatcher* clone() const override;
H A Drbt_rule.h26 class StringMatcher;
71 StringMatcher *anteContext;
76 StringMatcher *key;
82 StringMatcher *postContext;
103 * StringMatcher. In the future we may generalize this, but for
104 * now we sometimes cast down to StringMatcher.
301 friend class StringMatcher;
H A 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()
H A Drbt_pars.h34 class StringMatcher;
92 * to StringMatcher object segmentObjects.elementAt(0), etc.
97 * Vector of StringMatcher objects for segments. Used during the
100 * to StringMatcher object segmentObjects.elementAt(0), etc.
297 * @param adopted the StringMatcher to be adopted.
299 void setSegmentObject(int32_t seg, StringMatcher* adopted, UErrorCode& status);
H A Drbt_pars.cpp538 StringMatcher* m = in parseSection()
539 new StringMatcher(buf, bufSegStart, buf.length(), in parseSection()
675 new StringMatcher(buf, qstart, qlimit, 0, *parser.curData); in parseSection()
1594 void TransliteratorParser::setSegmentObject(int32_t seg, StringMatcher* adopted, UErrorCode& status) { in setSegmentObject()
/third_party/node/deps/icu-small/source/i18n/
H A Dstrmatch.cpp25 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringMatcher)
27 StringMatcher::StringMatcher(const UnicodeString& theString, in StringMatcher() function in StringMatcher
40 StringMatcher::StringMatcher(const StringMatcher& o) : in StringMatcher() function in StringMatcher
55 StringMatcher::~StringMatcher() { in ~StringMatcher()
61 StringMatcher* StringMatcher
[all...]
H A Dstrmatch.h37 * A StringMatcher may represent a segment, in which case it has a
41 * A StringMatcher that is not a segment should not be used as a
44 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer { class
60 StringMatcher(const UnicodeString& string,
70 StringMatcher(const StringMatcher& o);
75 virtual ~StringMatcher();
81 virtual StringMatcher* clone() const override;
H A Drbt_rule.h26 class StringMatcher;
71 StringMatcher *anteContext;
76 StringMatcher *key;
82 StringMatcher *postContext;
103 * StringMatcher. In the future we may generalize this, but for
104 * now we sometimes cast down to StringMatcher.
301 friend class StringMatcher;
H A 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()
H A Drbt_pars.h34 class StringMatcher;
92 * to StringMatcher object segmentObjects.elementAt(0), etc.
97 * Vector of StringMatcher objects for segments. Used during the
100 * to StringMatcher object segmentObjects.elementAt(0), etc.
297 * @param adopted the StringMatcher to be adopted.
299 void setSegmentObject(int32_t seg, StringMatcher* adopted, UErrorCode& status);
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dstrmatch.cpp25 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(StringMatcher)
27 StringMatcher::StringMatcher(const UnicodeString& theString, in StringMatcher() function in StringMatcher
40 StringMatcher::StringMatcher(const StringMatcher& o) : in StringMatcher() function in StringMatcher
55 StringMatcher::~StringMatcher() { in ~StringMatcher()
61 StringMatcher* StringMatcher
[all...]
H A Dstrmatch.h37 * A StringMatcher may represent a segment, in which case it has a
41 * A StringMatcher that is not a segment should not be used as a
44 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer { class
60 StringMatcher(const UnicodeString& string,
70 StringMatcher(const StringMatcher& o);
75 virtual ~StringMatcher();
81 virtual StringMatcher* clone() const;
H A Drbt_rule.h26 class StringMatcher;
71 StringMatcher *anteContext;
76 StringMatcher *key;
82 StringMatcher *postContext;
103 * StringMatcher. In the future we may generalize this, but for
104 * now we sometimes cast down to StringMatcher.
301 friend class StringMatcher;
H A 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()
H A Drbt_pars.h34 class StringMatcher;
92 * to StringMatcher object segmentObjects.elementAt(0), etc.
97 * Vector of StringMatcher objects for segments. Used during the
100 * to StringMatcher object segmentObjects.elementAt(0), etc.
297 * @param adopted the StringMatcher to be adopted.
299 void setSegmentObject(int32_t seg, StringMatcher* adopted, UErrorCode& status);
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliterationRule.java58 private StringMatcher anteContext;
63 private StringMatcher key;
69 private StringMatcher postContext;
90 * StringMatcher. In the future we may generalize this, but for
91 * now we sometimes cast down to StringMatcher.
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()
H A DStringMatcher.java22 * A StringMatcher may represent a segment, in which case it has a
26 * A StringMatcher that is not a segment should not be used as a
29 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
H A DTransliteratorParser.java76 * to StringMatcher object segmentObjects.elementAt(0), etc.
81 * Vector of StringMatcher objects for segments. Used during the
84 * to StringMatcher object segmentObjects.elementAt(0), etc.
86 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/
H A DTransliterationRule.java59 private StringMatcher anteContext;
64 private StringMatcher key;
70 private StringMatcher postContext;
91 * StringMatcher. In the future we may generalize this, but for
92 * now we sometimes cast down to StringMatcher.
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()
H A DStringMatcher.java23 * A StringMatcher may represent a segment, in which case it has a
27 * A StringMatcher that is not a segment should not be used as a
30 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
H A DTransliteratorParser.java77 * to StringMatcher object segmentObjects.elementAt(0), etc.
82 * Vector of StringMatcher objects for segments. Used during the
85 * to StringMatcher object segmentObjects.elementAt(0), etc.
87 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/
H A DStringMatcher.h1 //===- StringMatcher.h - Generate a matcher for input strings ---*- C++ -*-===//
9 // This file implements the StringMatcher class.
30 class StringMatcher { class
40 StringMatcher(StringRef strVariableName, in StringMatcher() function in llvm::StringMatcher
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/
H A 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
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
H A DStringMatcher.cpp1 //===- StringMatcher.cpp - Generate a matcher for input strings -----------===//
9 // This file implements the StringMatcher class.
13 #include "llvm/TableGen/StringMatcher.h"
29 StringMatcher::StringPair*> &Matches) { in FindFirstNonCommonLetter()
48 bool StringMatcher::EmitStringMatcherForChar( in EmitStringMatcherForChar()
131 void StringMatcher::Emit(unsigned Indent, bool IgnoreDuplicates) const { in Emit()

Completed in 27 milliseconds

12