HomeSort by relevance Sort by last modified time
    Searched refs:RegexMatcher (Results 1 - 25 of 31) sorted by null

1 2

  /external/icu/icu4c/source/tools/toolutil/
xmlparser.h 208 UXMLElement *createElement(RegexMatcher &mEl, UErrorCode &status);
221 RegexMatcher mXMLDecl;
222 RegexMatcher mXMLComment;
223 RegexMatcher mXMLSP;
224 RegexMatcher mXMLDoctype;
225 RegexMatcher mXMLPI;
226 RegexMatcher mXMLElemStart;
227 RegexMatcher mXMLElemEnd;
228 RegexMatcher mXMLElemEmpty;
229 RegexMatcher mXMLCharData
    [all...]
xmlparser.cpp 489 UXMLParser::createElement(RegexMatcher &mEl, UErrorCode &status) {
  /external/libtextclassifier/util/utf8/
unilib-icu.cc 67 UniLib::RegexMatcher::RegexMatcher(icu::RegexPattern* pattern,
80 std::unique_ptr<UniLib::RegexMatcher> UniLib::RegexPattern::Matcher(
82 return std::unique_ptr<UniLib::RegexMatcher>(new UniLib::RegexMatcher(
87 constexpr int UniLib::RegexMatcher::kError;
88 constexpr int UniLib::RegexMatcher::kNoError;
90 bool UniLib::RegexMatcher::Matches(int* status) const {
106 bool UniLib::RegexMatcher::ApproximatelyMatches(int* status) {
131 bool UniLib::RegexMatcher::UpdateLastFindOffset() const
    [all...]
unilib_test.cc 81 std::unique_ptr<UniLib::RegexMatcher> matcher = pattern->Matcher(input);
101 std::unique_ptr<UniLib::RegexMatcher> matcher;
106 EXPECT_EQ(status, UniLib::RegexMatcher::kNoError);
109 EXPECT_EQ(status, UniLib::RegexMatcher::kNoError);
115 EXPECT_EQ(status, UniLib::RegexMatcher::kNoError);
120 EXPECT_EQ(status, UniLib::RegexMatcher::kNoError);
122 EXPECT_EQ(status, UniLib::RegexMatcher::kNoError);
124 EXPECT_EQ(status, UniLib::RegexMatcher::kNoError);
126 EXPECT_EQ(status, UniLib::RegexMatcher::kNoError);
142 std::unique_ptr<UniLib::RegexMatcher> matcher
    [all...]
unilib-icu.h 50 class RegexMatcher {
105 explicit RegexMatcher(icu::RegexPattern* pattern, icu::UnicodeString text);
110 std::unique_ptr<icu::RegexMatcher> matcher_;
119 std::unique_ptr<RegexMatcher> Matcher(const UnicodeText& input) const;
  /external/icu/icu4c/source/i18n/unicode/
regex.h 30 * <code>RegexPattern</code> and <code>RegexMatcher</code>.
33 * and can be used to create <code>RegexMatcher</code> objects for the pattern.</p>
35 * <p>Class <code>RegexMatcher</code> bundles together a regular expression
37 * <code>RegexMatcher</code> includes API for doing plain find or search
41 * <p>Note that by constructing <code>RegexMatcher</code> objects directly from regular
66 class RegexMatcher;
109 * RegexMatcher objects that were created from the RegexPattern are active.
156 * <p>Note that RegexPattern objects must not be deleted while RegexMatcher
163 * <p>Note that it is often more convenient to construct a RegexMatcher directly
165 * then creating a RegexMatcher object from the pattern.</p
    [all...]
  /external/icu/icu4c/source/test/intltest/
rbbimonkeytest.h 90 LocalPointer<RegexMatcher> fRuleMatcher; // Regular expression that matches the rule.
123 LocalPointer<RegexMatcher> fSetRefsMatcher;
124 LocalPointer<RegexMatcher> fCommentsMatcher;
125 LocalPointer<RegexMatcher> fClassDefMatcher;
126 LocalPointer<RegexMatcher> fRuleDefMatcher;
regextst.cpp 338 RegexMatcher *REMatcher = NULL;
401 RegexMatcher *REMatcher = NULL;
554 RegexMatcher *m = pattern->matcher(UNICODE_STRING_SIMPLE("a\\u00dfxzzz").unescape(), status);
699 RegexMatcher matcher(&pattern, 0, status);
720 // API_Match Test that the API for class RegexMatcher
756 RegexMatcher *m1 = pat2->matcher(inStr1, status);
829 RegexMatcher m("A?", 0, status); // will match zero length string.
866 // RegexMatcher::start();
867 // RegexMatcher::end();
868 // RegexMatcher::groupCount()
    [all...]
dcfmtest.cpp 211 RegexMatcher parseLineMat(UnicodeString(
219 RegexMatcher formatLineMat(UnicodeString(
228 RegexMatcher commentMat (UNICODE_STRING_SIMPLE("\\s*(#.*)?$"), 0, status);
229 RegexMatcher lineMat(UNICODE_STRING_SIMPLE("(?m)^(.*?)$"), testString, 0, status);
232 dataerrln("Construct RegexMatcher() error.");
rbbimonkeytest.cpp 75 fSetRefsMatcher.adoptInstead(new RegexMatcher(UnicodeString(
82 fCommentsMatcher.adoptInstead(new RegexMatcher(UnicodeString(
90 fClassDefMatcher.adoptInstead(new RegexMatcher(UnicodeString(
99 fRuleDefMatcher.adoptInstead(new RegexMatcher(UnicodeString(
212 thisRule->fRuleMatcher.adoptInstead(new RegexMatcher(thisRule->fExpandedRule, UREGEX_COMMENTS | UREGEX_DOTALL, status));
    [all...]
rbbitst.cpp     [all...]
ssearch.cpp     [all...]
  /external/libtextclassifier/datetime/
extractor.cc 172 std::unique_ptr<UniLib::RegexMatcher> matcher =
185 if (status != UniLib::RegexMatcher::kNoError) {
196 if (status != UniLib::RegexMatcher::kNoError) {
206 if (status != UniLib::RegexMatcher::kNoError) {
210 if (status != UniLib::RegexMatcher::kNoError) {
278 std::unique_ptr<UniLib::RegexMatcher> matcher =
285 while (matcher->Find(&status) && status == UniLib::RegexMatcher::kNoError) {
287 if (status != UniLib::RegexMatcher::kNoError) {
extractor.h 44 // (DateParseDate) from the current match of the passed RegexMatcher.
48 const CompiledRule& rule, const UniLib::RegexMatcher& matcher,
101 const UniLib::RegexMatcher& matcher_;
parser.cc 210 const CompiledRule& rule, const UniLib::RegexMatcher& matcher,
214 int status = UniLib::RegexMatcher::kNoError;
216 if (status != UniLib::RegexMatcher::kNoError) {
221 if (status != UniLib::RegexMatcher::kNoError) {
249 std::unique_ptr<UniLib::RegexMatcher> matcher =
251 int status = UniLib::RegexMatcher::kNoError;
253 if (matcher->Matches(&status) && status == UniLib::RegexMatcher::kNoError) {
261 while (matcher->Find(&status) && status == UniLib::RegexMatcher::kNoError) {
380 const UniLib::RegexMatcher& matcher,
parser.h 86 const UniLib::RegexMatcher& matcher,
95 const UniLib::RegexMatcher& matcher,
  /external/icu/icu4c/source/i18n/
rematch.cpp 12 // Contains the implementation of class RegexMatcher,
70 RegexMatcher::RegexMatcher(const RegexPattern *pat) {
86 RegexMatcher::RegexMatcher(const UnicodeString &regexp, const UnicodeString &input,
105 RegexMatcher::RegexMatcher(UText *regexp, UText *input,
122 RegexMatcher::RegexMatcher(const UnicodeString &regexp,
137 RegexMatcher::RegexMatcher(UText *regexp
    [all...]
repattrn.cpp 468 RegexMatcher *RegexPattern::matcher(const UnicodeString &input,
470 RegexMatcher *retMatcher = matcher(status);
484 RegexMatcher *RegexPattern::matcher(UErrorCode &status) const {
485 RegexMatcher *retMatcher = NULL;
495 retMatcher = new RegexMatcher(this);
520 RegexMatcher *matcher = NULL;
544 RegexMatcher *matcher = NULL;
651 RegexMatcher m(this);
672 RegexMatcher m(this);
uregex.cpp 43 RegexMatcher *fMatcher;
    [all...]
  /external/icu/icu4c/source/tools/genrb/
prscmnts.cpp 57 RegexMatcher myMatcher(patString, src, options, *status);
105 RegexMatcher matcher(patternString, UREGEX_DOTALL, *status);
166 RegexMatcher matcher(patternString, UREGEX_DOTALL, *status);
206 RegexMatcher matcher(patternString, UREGEX_DOTALL, *status);
  /libcore/luni/src/main/native/
java_util_regex_Matcher.cpp 38 * Encapsulates an instance of ICU4C's RegexMatcher class along with a copy of
55 MatcherState(icu::RegexMatcher* matcher) :
117 icu::RegexMatcher* matcher() {
138 std::unique_ptr<icu::RegexMatcher> mMatcher;
216 icu::RegexMatcher* result = pattern->matcher(status);
  /external/icu/icu4c/source/samples/ugrep/
ugrep.cpp 123 // Create a RegexMatcher from the newly created pattern.
126 RegexMatcher *matcher = rePat->matcher(empty, status);
128 fprintf(stderr, "ugrep: error in creating RegexMatcher: \"%s\"\n",
  /external/libtextclassifier/
text-classifier.cc     [all...]
  /prebuilts/tools/common/m2/repository/net/sf/jopt-simple/jopt-simple/4.9/
jopt-simple-4.9.jar 
  /prebuilts/tools/common/offline-m2/net/sf/jopt-simple/jopt-simple/4.9/
jopt-simple-4.9.jar 

Completed in 819 milliseconds

1 2