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

  /external/icu/icu4c/source/tools/toolutil/
xmlparser.h 206 UXMLElement *createElement(RegexMatcher &mEl, UErrorCode &status);
219 RegexMatcher mXMLDecl;
220 RegexMatcher mXMLComment;
221 RegexMatcher mXMLSP;
222 RegexMatcher mXMLDoctype;
223 RegexMatcher mXMLPI;
224 RegexMatcher mXMLElemStart;
225 RegexMatcher mXMLElemEnd;
226 RegexMatcher mXMLElemEmpty;
227 RegexMatcher mXMLCharData
    [all...]
xmlparser.cpp 487 UXMLParser::createElement(RegexMatcher &mEl, UErrorCode &status) {
  /external/icu/icu4c/source/i18n/unicode/
regex.h 28 * <code>RegexPattern</code> and <code>RegexMatcher</code>.
31 * and can be used to create <code>RegexMatcher</code> objects for the pattern.</p>
33 * <p>Class <code>RegexMatcher</code> bundles together a regular expression
35 * <code>RegexMatcher</code> includes API for doing plain find or search
39 * <p>Note that by constructing <code>RegexMatcher</code> objects directly from regular
64 class RegexMatcher;
107 * RegexMatcher objects that were created from the RegexPattern are active.
154 * <p>Note that RegexPattern objects must not be deleted while RegexMatcher
161 * <p>Note that it is often more convenient to construct a RegexMatcher directly
163 * then creating a RegexMatcher object from the pattern.</p
    [all...]
  /libcore/luni/src/main/native/
java_util_regex_Matcher.cpp 32 static icu::RegexMatcher* toRegexMatcher(jlong address) {
33 return reinterpret_cast<icu::RegexMatcher*>(static_cast<uintptr_t>(address));
37 * We use ICU4C's RegexMatcher class, but our input is on the Java heap and potentially moving
38 * around between calls. This wrapper class ensures that our RegexMatcher is always pointing at
77 icu::RegexMatcher* operator->() {
109 icu::RegexMatcher* mMatcher;
175 icu::RegexMatcher* result = pattern->matcher(status);
  /external/icu/icu4c/source/i18n/
rematch.cpp 10 // Contains the implementation of class RegexMatcher,
66 RegexMatcher::RegexMatcher(const RegexPattern *pat) {
82 RegexMatcher::RegexMatcher(const UnicodeString &regexp, const UnicodeString &input,
101 RegexMatcher::RegexMatcher(UText *regexp, UText *input,
118 RegexMatcher::RegexMatcher(const UnicodeString &regexp,
133 RegexMatcher::RegexMatcher(UText *regexp
    [all...]
repattrn.cpp 464 RegexMatcher *RegexPattern::matcher(const UnicodeString &input,
466 RegexMatcher *retMatcher = matcher(status);
480 RegexMatcher *RegexPattern::matcher(UErrorCode &status) const {
481 RegexMatcher *retMatcher = NULL;
491 retMatcher = new RegexMatcher(this);
516 RegexMatcher *matcher = NULL;
540 RegexMatcher *matcher = NULL;
647 RegexMatcher m(this);
668 RegexMatcher m(this);
uregex.cpp 41 RegexMatcher *fMatcher;
    [all...]
  /external/icu/icu4c/source/tools/genrb/
prscmnts.cpp 55 RegexMatcher myMatcher(patString, src, options, *status);
103 RegexMatcher matcher(patternString, UREGEX_DOTALL, *status);
164 RegexMatcher matcher(patternString, UREGEX_DOTALL, *status);
204 RegexMatcher matcher(patternString, UREGEX_DOTALL, *status);
  /external/icu/icu4c/source/test/intltest/
regextst.cpp 395 RegexMatcher *REMatcher = NULL;
458 RegexMatcher *REMatcher = NULL;
611 RegexMatcher *m = pattern->matcher(UNICODE_STRING_SIMPLE("a\\u00dfxzzz").unescape(), status);
756 RegexMatcher matcher(&pattern, 0, status);
777 // API_Match Test that the API for class RegexMatcher
813 RegexMatcher *m1 = pat2->matcher(inStr1, status);
886 RegexMatcher m("A?", 0, status); // will match zero length string.
923 // RegexMatcher::start();
924 // RegexMatcher::end();
925 // RegexMatcher::groupCount()
    [all...]
dcfmtest.cpp 209 RegexMatcher parseLineMat(UnicodeString(
217 RegexMatcher formatLineMat(UnicodeString(
226 RegexMatcher commentMat (UNICODE_STRING_SIMPLE("\\s*(#.*)?$"), 0, status);
227 RegexMatcher lineMat(UNICODE_STRING_SIMPLE("(?m)^(.*?)$"), testString, 0, status);
230 dataerrln("Construct RegexMatcher() error.");
ssearch.cpp     [all...]
rbbitst.cpp     [all...]
itspoof.cpp 400 RegexMatcher parseLine("(?m)^([0-9A-F]{4}[^#;]*?);([^#;]*?);([^#]*)", confusablesTxt, 0, status);
  /external/icu/icu4c/source/samples/ugrep/
ugrep.cpp 117 // Create a RegexMatcher from the newly created pattern.
120 RegexMatcher *matcher = rePat->matcher(empty, status);
122 fprintf(stderr, "ugrep: error in creating RegexMatcher: \"%s\"\n",
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
UnicodePropertySymbolTable.java 148 patternMatcher = new UnicodeProperty.RegexMatcher().set(fixedRegex);
UnicodeProperty.java 860 RegexMatcher regexMatcher = new RegexMatcher();
887 set = prop.getSet(regexMatcher.set(value.substring(1, value
    [all...]

Completed in 467 milliseconds