Searched refs:regexp (Results 1 - 25 of 380) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/webkit/fast/regex/
H A Dquantified-assertions.js28 var regexp; variable
30 regexp = /(?=a){0}/gm;
31 debug("\nTesting regexp: " + regexp);
32 shouldBeTrue("regexp.test('a')");
33 shouldBe("regexp.lastIndex", "0");
35 regexp = /(?=a){1}/gm;
36 debug("\nTesting regexp: " + regexp);
37 shouldBeTrue("regexp
[all...]
H A Dmalformed-escapes.js28 var regexp; variable
30 regexp = /\ug/gm;
31 debug("\nTesting regexp: " + regexp);
32 shouldBeTrue("regexp.test('ug')");
33 shouldBe("regexp.lastIndex", "2");
35 regexp = /\xg/gm;
36 debug("\nTesting regexp: " + regexp);
37 shouldBeTrue("regexp
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-call-as-function.js32 var regexp = /a(b)(c)/; variable
35 assertEquals(expected, String(regexp.exec(subject)));
36 assertThrows(function(){ regexp(subject); });
H A Dwith-function-expression.js33 // Check that the return value is a function. Use regexp to avoid
35 var regexp = /function/; variable
36 var res = assertTrue(eval(source).match(regexp) == 'function');
/external/chromium_org/v8/test/webkit/
H A Dregexp-many-brackets.js30 var regexp = ""; variable
32 regexp += "(";
33 regexp += "hello";
35 regexp += ")";
41 var manyBracketsRegExp = new RegExp(regexp);
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Duregex.h205 * @param regexp The regular expression to be closed.
209 uregex_close(URegularExpression *regexp);
243 * @param regexp The compiled regular expression to be cloned.
249 uregex_clone(const URegularExpression *regexp, UErrorCode *status);
255 * @param regexp The compiled regular expression.
269 uregex_pattern(const URegularExpression *regexp,
277 * @param regexp The compiled regular expression.
285 uregex_patternUText(const URegularExpression *regexp,
291 * @param regexp The compiled regular expression.
297 uregex_flags(const URegularExpression *regexp,
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Duregex.h205 * @param regexp The regular expression to be closed.
209 uregex_close(URegularExpression *regexp);
243 * @param regexp The compiled regular expression to be cloned.
249 uregex_clone(const URegularExpression *regexp, UErrorCode *status);
255 * @param regexp The compiled regular expression.
269 uregex_pattern(const URegularExpression *regexp,
277 * @param regexp The compiled regular expression.
285 uregex_patternUText(const URegularExpression *regexp,
291 * @param regexp The compiled regular expression.
297 uregex_flags(const URegularExpression *regexp,
[all...]
/external/chromium_org/third_party/re2/re2/testing/
H A Dmimics_pcre_test.cc7 #include "re2/regexp.h"
12 const char* regexp; member in struct:re2::PCRETest
66 Regexp* re = Regexp::Parse(t.regexp, flags, NULL);
67 CHECK(re) << " " << t.regexp;
69 << " " << t.regexp << " "
H A Drequired_prefix_test.cc6 #include "re2/regexp.h"
11 const char* regexp; member in struct:re2::PrefixTest
19 // If the regexp is missing a ^, there's no required prefix.
24 // If the regexp immediately goes into
46 Regexp* re = Regexp::Parse(t.regexp, flags, NULL);
47 CHECK(re) << " " << t.regexp;
52 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf") << " " << re->Dump();
55 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf");
57 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf");
59 << " " << t.regexp << " " << (
[all...]
H A Dsimplify_test.cc10 #include "re2/regexp.h"
15 const char* regexp; member in struct:re2::Test
144 VLOG(1) << "Testing " << tests[i].regexp;
145 Regexp* re = Regexp::Parse(tests[i].regexp,
149 CHECK(re != NULL) << " " << tests[i].regexp << " " << status.Text();
154 if (strcmp(tests[i].regexp, tests[i].simplified) == 0) {
155 CHECK(re == sre) << " " << tests[i].regexp
160 << " " << tests[i].regexp << " " << sre->Dump();
H A Dsearch_test.cc9 #include "re2/regexp.h"
16 const char* regexp; member in struct:re2::RegexpTest
309 if (!TestRegexpOnText(t.regexp, t.text))
316 atom.push_back(StringPiece(t.regexp).as_string());
H A Dpossible_match_test.cc9 #include "re2/regexp.h"
24 const char* regexp; member in struct:re2::PrefixTest
109 LOG(INFO) << "Checking regexp=" << CEscape(t.regexp);
110 Regexp* re = Regexp::Parse(t.regexp, Regexp::LikePerl, NULL);
115 << " " << t.regexp;
119 CHECK(RE2(t.regexp).PossibleMatchRange(&min, &max, t.maxlen));
121 EXPECT_EQ(t.min, min) << t.regexp;
122 EXPECT_EQ(t.max, max) << t.regexp;
156 // Fails because it's a malformed regexp
194 HandleRegexp(const string& regexp) argument
[all...]
H A Dregexp_benchmark.cc10 #include "re2/regexp.h"
42 const char* regexp = "(\\d+)-(\\d+)-(\\d+)"; local
46 Regexp* re = Regexp::Parse(regexp, Regexp::LikePerl, NULL);
69 PCRE re(regexp, PCRE::UTF8);
78 PCRE* re = new PCRE(regexp, PCRE::UTF8);
88 RE2 re(regexp);
105 typedef void SearchImpl(int iters, const char* regexp, const StringPiece& text,
113 typedef void ParseImpl(int iters, const char* regexp, const StringPiece& text);
133 // Benchmark: failed search for regexp in random text.
149 // the text for regexp iter
150 Search(int iters, int nbytes, const char* regexp, SearchImpl* search) argument
243 string regexp = "^" + s + ".*$"; local
286 SearchSuccess(int iters, int nbytes, const char* regexp, SearchImpl* search) argument
566 ParseRegexp(int iters, const string& regexp) argument
574 SimplifyRegexp(int iters, const string& regexp) argument
585 NullWalkRegexp(int iters, const string& regexp) argument
594 SimplifyCompileRegexp(int iters, const string& regexp) argument
608 CompileRegexp(int iters, const string& regexp) argument
619 CompileToProg(int iters, const string& regexp) argument
630 CompileByteMap(int iters, const string& regexp) argument
642 CompilePCRE(int iters, const string& regexp) argument
649 CompileRE2(int iters, const string& regexp) argument
656 RunBuild(int iters, const string& regexp, void (*run)(int, const string&)) argument
801 SearchDFA(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
818 SearchNFA(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
832 SearchOnePass(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
847 SearchBitState(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
861 SearchPCRE(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
873 SearchRE2(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
889 SearchCachedDFA(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
906 SearchCachedNFA(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
920 SearchCachedOnePass(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
934 SearchCachedBitState(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
947 SearchCachedPCRE(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
959 SearchCachedRE2(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
975 Parse3NFA(int iters, const char* regexp, const StringPiece& text) argument
988 Parse3OnePass(int iters, const char* regexp, const StringPiece& text) argument
1002 Parse3BitState(int iters, const char* regexp, const StringPiece& text) argument
1015 Parse3Backtrack(int iters, const char* regexp, const StringPiece& text) argument
1028 Parse3PCRE(int iters, const char* regexp, const StringPiece& text) argument
1037 Parse3RE2(int iters, const char* regexp, const StringPiece& text) argument
1046 Parse3CachedNFA(int iters, const char* regexp, const StringPiece& text) argument
1059 Parse3CachedOnePass(int iters, const char* regexp, const StringPiece& text) argument
1072 Parse3CachedBitState(int iters, const char* regexp, const StringPiece& text) argument
1084 Parse3CachedBacktrack(int iters, const char* regexp, const StringPiece& text) argument
1096 Parse3CachedPCRE(int iters, const char* regexp, const StringPiece& text) argument
1105 Parse3CachedRE2(int iters, const char* regexp, const StringPiece& text) argument
1118 Parse1NFA(int iters, const char* regexp, const StringPiece& text) argument
1131 Parse1OnePass(int iters, const char* regexp, const StringPiece& text) argument
1145 Parse1BitState(int iters, const char* regexp, const StringPiece& text) argument
1158 Parse1PCRE(int iters, const char* regexp, const StringPiece& text) argument
1167 Parse1RE2(int iters, const char* regexp, const StringPiece& text) argument
1176 Parse1CachedNFA(int iters, const char* regexp, const StringPiece& text) argument
1189 Parse1CachedOnePass(int iters, const char* regexp, const StringPiece& text) argument
1202 Parse1CachedBitState(int iters, const char* regexp, const StringPiece& text) argument
1214 Parse1CachedBacktrack(int iters, const char* regexp, const StringPiece& text) argument
1226 Parse1CachedPCRE(int iters, const char* regexp, const StringPiece& text) argument
1235 Parse1CachedRE2(int iters, const char* regexp, const StringPiece& text) argument
1244 SearchParse2CachedPCRE(int iters, const char* regexp, const StringPiece& text) argument
1254 SearchParse2CachedRE2(int iters, const char* regexp, const StringPiece& text) argument
1264 SearchParse1CachedPCRE(int iters, const char* regexp, const StringPiece& text) argument
1274 SearchParse1CachedRE2(int iters, const char* regexp, const StringPiece& text) argument
1411 FullMatchPCRE(int iter, int n, const char *regexp) argument
1424 FullMatchRE2(int iter, int n, const char *regexp) argument
[all...]
/external/regex-re2/re2/testing/
H A Dmimics_pcre_test.cc7 #include "re2/regexp.h"
12 const char* regexp; member in struct:re2::PCRETest
66 Regexp* re = Regexp::Parse(t.regexp, flags, NULL);
67 CHECK(re) << " " << t.regexp;
69 << " " << t.regexp << " "
H A Drequired_prefix_test.cc6 #include "re2/regexp.h"
11 const char* regexp; member in struct:re2::PrefixTest
19 // If the regexp is missing a ^, there's no required prefix.
24 // If the regexp immediately goes into
46 Regexp* re = Regexp::Parse(t.regexp, flags, NULL);
47 CHECK(re) << " " << t.regexp;
52 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf") << " " << re->Dump();
55 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf");
57 << " " << t.regexp << " " << (j==0 ? "latin1" : "utf");
59 << " " << t.regexp << " " << (
[all...]
H A Dsimplify_test.cc10 #include "re2/regexp.h"
15 const char* regexp; member in struct:re2::Test
144 VLOG(1) << "Testing " << tests[i].regexp;
145 Regexp* re = Regexp::Parse(tests[i].regexp,
149 CHECK(re != NULL) << " " << tests[i].regexp << " " << status.Text();
154 if (strcmp(tests[i].regexp, tests[i].simplified) == 0) {
155 CHECK(re == sre) << " " << tests[i].regexp
160 << " " << tests[i].regexp << " " << sre->Dump();
H A Dsearch_test.cc9 #include "re2/regexp.h"
16 const char* regexp; member in struct:re2::RegexpTest
309 if (!TestRegexpOnText(t.regexp, t.text))
316 atom.push_back(StringPiece(t.regexp).as_string());
H A Dpossible_match_test.cc9 #include "re2/regexp.h"
24 const char* regexp; member in struct:re2::PrefixTest
109 LOG(INFO) << "Checking regexp=" << CEscape(t.regexp);
110 Regexp* re = Regexp::Parse(t.regexp, Regexp::LikePerl, NULL);
115 << " " << t.regexp;
119 CHECK(RE2(t.regexp).PossibleMatchRange(&min, &max, t.maxlen));
121 EXPECT_EQ(t.min, min) << t.regexp;
122 EXPECT_EQ(t.max, max) << t.regexp;
156 // Fails because it's a malformed regexp
194 HandleRegexp(const string& regexp) argument
[all...]
H A Dregexp_benchmark.cc10 #include "re2/regexp.h"
42 const char* regexp = "(\\d+)-(\\d+)-(\\d+)"; local
46 Regexp* re = Regexp::Parse(regexp, Regexp::LikePerl, NULL);
69 PCRE re(regexp, PCRE::UTF8);
78 PCRE* re = new PCRE(regexp, PCRE::UTF8);
88 RE2 re(regexp);
105 typedef void SearchImpl(int iters, const char* regexp, const StringPiece& text,
113 typedef void ParseImpl(int iters, const char* regexp, const StringPiece& text);
133 // Benchmark: failed search for regexp in random text.
149 // the text for regexp iter
150 Search(int iters, int nbytes, const char* regexp, SearchImpl* search) argument
243 string regexp = "^" + s + ".*$"; local
286 SearchSuccess(int iters, int nbytes, const char* regexp, SearchImpl* search) argument
566 ParseRegexp(int iters, const string& regexp) argument
574 SimplifyRegexp(int iters, const string& regexp) argument
585 NullWalkRegexp(int iters, const string& regexp) argument
594 SimplifyCompileRegexp(int iters, const string& regexp) argument
608 CompileRegexp(int iters, const string& regexp) argument
619 CompileToProg(int iters, const string& regexp) argument
630 CompileByteMap(int iters, const string& regexp) argument
642 CompilePCRE(int iters, const string& regexp) argument
649 CompileRE2(int iters, const string& regexp) argument
656 RunBuild(int iters, const string& regexp, void (*run)(int, const string&)) argument
801 SearchDFA(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
818 SearchNFA(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
832 SearchOnePass(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
847 SearchBitState(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
861 SearchPCRE(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
873 SearchRE2(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
889 SearchCachedDFA(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
906 SearchCachedNFA(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
920 SearchCachedOnePass(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
934 SearchCachedBitState(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
947 SearchCachedPCRE(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
959 SearchCachedRE2(int iters, const char* regexp, const StringPiece& text, Prog::Anchor anchor, bool expect_match) argument
975 Parse3NFA(int iters, const char* regexp, const StringPiece& text) argument
988 Parse3OnePass(int iters, const char* regexp, const StringPiece& text) argument
1002 Parse3BitState(int iters, const char* regexp, const StringPiece& text) argument
1015 Parse3Backtrack(int iters, const char* regexp, const StringPiece& text) argument
1028 Parse3PCRE(int iters, const char* regexp, const StringPiece& text) argument
1037 Parse3RE2(int iters, const char* regexp, const StringPiece& text) argument
1046 Parse3CachedNFA(int iters, const char* regexp, const StringPiece& text) argument
1059 Parse3CachedOnePass(int iters, const char* regexp, const StringPiece& text) argument
1072 Parse3CachedBitState(int iters, const char* regexp, const StringPiece& text) argument
1084 Parse3CachedBacktrack(int iters, const char* regexp, const StringPiece& text) argument
1096 Parse3CachedPCRE(int iters, const char* regexp, const StringPiece& text) argument
1105 Parse3CachedRE2(int iters, const char* regexp, const StringPiece& text) argument
1118 Parse1NFA(int iters, const char* regexp, const StringPiece& text) argument
1131 Parse1OnePass(int iters, const char* regexp, const StringPiece& text) argument
1145 Parse1BitState(int iters, const char* regexp, const StringPiece& text) argument
1158 Parse1PCRE(int iters, const char* regexp, const StringPiece& text) argument
1167 Parse1RE2(int iters, const char* regexp, const StringPiece& text) argument
1176 Parse1CachedNFA(int iters, const char* regexp, const StringPiece& text) argument
1189 Parse1CachedOnePass(int iters, const char* regexp, const StringPiece& text) argument
1202 Parse1CachedBitState(int iters, const char* regexp, const StringPiece& text) argument
1214 Parse1CachedBacktrack(int iters, const char* regexp, const StringPiece& text) argument
1226 Parse1CachedPCRE(int iters, const char* regexp, const StringPiece& text) argument
1235 Parse1CachedRE2(int iters, const char* regexp, const StringPiece& text) argument
1244 SearchParse2CachedPCRE(int iters, const char* regexp, const StringPiece& text) argument
1254 SearchParse2CachedRE2(int iters, const char* regexp, const StringPiece& text) argument
1264 SearchParse1CachedPCRE(int iters, const char* regexp, const StringPiece& text) argument
1274 SearchParse1CachedRE2(int iters, const char* regexp, const StringPiece& text) argument
1411 FullMatchPCRE(int iter, int n, const char *regexp) argument
1424 FullMatchRE2(int iter, int n, const char *regexp) argument
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-regexp-construct-result.js28 // Create a huge regexp with many alternative capture groups, most of
38 var regexp = new RegExp(regexp_string);
41 var matches = regexp.exec("a");
/external/chromium_org/third_party/icu/source/i18n/
H A Duregex.cpp324 RegularExpression *regexp = (RegularExpression*)regexp2; local
326 if (validateRE(regexp, FALSE, status) == FALSE) {
330 *patLength = regexp->fPatStringLen;
332 return regexp->fPatString;
344 RegularExpression *regexp = (RegularExpression*)regexp2; local
345 return regexp->fPat->patternText(*status);
356 RegularExpression *regexp = (RegularExpression*)regexp2; local
357 if (validateRE(regexp, FALSE, status) == FALSE) {
360 int32_t flags = regexp->fPat->flags();
375 RegularExpression *regexp local
408 RegularExpression *regexp = (RegularExpression*)regexp2; local
438 RegularExpression *regexp = (RegularExpression*)regexp2; local
478 RegularExpression *regexp = (RegularExpression*)regexp2; local
495 RegularExpression *regexp = (RegularExpression*)regexp2; local
519 RegularExpression *regexp = (RegularExpression*)regexp2; local
549 RegularExpression *regexp = (RegularExpression*)regexp2; local
580 RegularExpression *regexp = (RegularExpression*)regexp2; local
603 RegularExpression *regexp = (RegularExpression*)regexp2; local
619 RegularExpression *regexp = (RegularExpression*)regexp2; local
639 RegularExpression *regexp = (RegularExpression*)regexp2; local
702 RegularExpression *regexp = (RegularExpression*)regexp2; local
721 RegularExpression *regexp = (RegularExpression*)regexp2; local
770 RegularExpression *regexp = (RegularExpression*)regexp2; local
794 RegularExpression *regexp = (RegularExpression*)regexp2; local
818 RegularExpression *regexp = (RegularExpression*)regexp2; local
844 RegularExpression *regexp = (RegularExpression*)regexp2; local
863 RegularExpression *regexp = (RegularExpression*)regexp2; local
884 RegularExpression *regexp = (RegularExpression*)regexp2; local
906 RegularExpression *regexp = (RegularExpression*)regexp2; local
922 RegularExpression *regexp = (RegularExpression*)regexp2; local
939 RegularExpression *regexp = (RegularExpression*)regexp2; local
955 RegularExpression *regexp = (RegularExpression*)regexp2; local
972 RegularExpression *regexp = (RegularExpression*)regexp2; local
988 RegularExpression *regexp = (RegularExpression*)regexp2; local
1004 RegularExpression *regexp = (RegularExpression*)regexp2; local
1021 RegularExpression *regexp = (RegularExpression*)regexp2; local
1038 RegularExpression *regexp = (RegularExpression*)regexp2; local
1056 RegularExpression *regexp = (RegularExpression*)regexp2; local
1073 RegularExpression *regexp = (RegularExpression*)regexp2; local
1091 RegularExpression *regexp = (RegularExpression*)regexp2; local
1108 RegularExpression *regexp = (RegularExpression*)regexp2; local
1125 RegularExpression *regexp = (RegularExpression*)regexp2; local
1142 RegularExpression *regexp = (RegularExpression*)regexp2; local
1161 RegularExpression *regexp = (RegularExpression*)regexp2; local
1209 RegularExpression *regexp = (RegularExpression*)regexp2; local
1235 RegularExpression *regexp = (RegularExpression*)regexp2; local
1270 RegularExpression *regexp = (RegularExpression*)regexp2; local
1341 appendReplacement(RegularExpression *regexp, const UChar *replacementText, int32_t replacementLength, UChar **destBuf, int32_t *destCapacity, UErrorCode *status) argument
1562 RegularExpression *regexp = (RegularExpression*)regexp2; local
1575 RegularExpression *regexp = (RegularExpression*)regexp2; local
1585 appendTail(RegularExpression *regexp, UChar **destBuf, int32_t *destCapacity, UErrorCode *status) argument
1715 RegularExpression *regexp = (RegularExpression*)regexp2; local
1727 RegularExpression *regexp = (RegularExpression*)regexp2; local
1775 split(RegularExpression *regexp, UChar *destBuf, int32_t destCapacity, int32_t *requiredCapacity, UChar *destFields[], int32_t destFieldsCapacity, UErrorCode *status) argument
1918 RegularExpression *regexp = (RegularExpression*)regexp2; local
1942 RegularExpression *regexp = (RegularExpression*)regexp2; local
[all...]
/external/icu/icu4c/source/i18n/
H A Duregex.cpp324 RegularExpression *regexp = (RegularExpression*)regexp2; local
326 if (validateRE(regexp, FALSE, status) == FALSE) {
330 *patLength = regexp->fPatStringLen;
332 return regexp->fPatString;
344 RegularExpression *regexp = (RegularExpression*)regexp2; local
345 return regexp->fPat->patternText(*status);
356 RegularExpression *regexp = (RegularExpression*)regexp2; local
357 if (validateRE(regexp, FALSE, status) == FALSE) {
360 int32_t flags = regexp->fPat->flags();
375 RegularExpression *regexp local
408 RegularExpression *regexp = (RegularExpression*)regexp2; local
438 RegularExpression *regexp = (RegularExpression*)regexp2; local
478 RegularExpression *regexp = (RegularExpression*)regexp2; local
495 RegularExpression *regexp = (RegularExpression*)regexp2; local
519 RegularExpression *regexp = (RegularExpression*)regexp2; local
549 RegularExpression *regexp = (RegularExpression*)regexp2; local
580 RegularExpression *regexp = (RegularExpression*)regexp2; local
603 RegularExpression *regexp = (RegularExpression*)regexp2; local
619 RegularExpression *regexp = (RegularExpression*)regexp2; local
639 RegularExpression *regexp = (RegularExpression*)regexp2; local
705 RegularExpression *regexp = (RegularExpression*)regexp2; local
724 RegularExpression *regexp = (RegularExpression*)regexp2; local
773 RegularExpression *regexp = (RegularExpression*)regexp2; local
797 RegularExpression *regexp = (RegularExpression*)regexp2; local
821 RegularExpression *regexp = (RegularExpression*)regexp2; local
847 RegularExpression *regexp = (RegularExpression*)regexp2; local
866 RegularExpression *regexp = (RegularExpression*)regexp2; local
887 RegularExpression *regexp = (RegularExpression*)regexp2; local
909 RegularExpression *regexp = (RegularExpression*)regexp2; local
925 RegularExpression *regexp = (RegularExpression*)regexp2; local
942 RegularExpression *regexp = (RegularExpression*)regexp2; local
958 RegularExpression *regexp = (RegularExpression*)regexp2; local
975 RegularExpression *regexp = (RegularExpression*)regexp2; local
991 RegularExpression *regexp = (RegularExpression*)regexp2; local
1007 RegularExpression *regexp = (RegularExpression*)regexp2; local
1024 RegularExpression *regexp = (RegularExpression*)regexp2; local
1041 RegularExpression *regexp = (RegularExpression*)regexp2; local
1059 RegularExpression *regexp = (RegularExpression*)regexp2; local
1076 RegularExpression *regexp = (RegularExpression*)regexp2; local
1094 RegularExpression *regexp = (RegularExpression*)regexp2; local
1111 RegularExpression *regexp = (RegularExpression*)regexp2; local
1128 RegularExpression *regexp = (RegularExpression*)regexp2; local
1145 RegularExpression *regexp = (RegularExpression*)regexp2; local
1164 RegularExpression *regexp = (RegularExpression*)regexp2; local
1212 RegularExpression *regexp = (RegularExpression*)regexp2; local
1238 RegularExpression *regexp = (RegularExpression*)regexp2; local
1273 RegularExpression *regexp = (RegularExpression*)regexp2; local
1344 appendReplacement(RegularExpression *regexp, const UChar *replacementText, int32_t replacementLength, UChar **destBuf, int32_t *destCapacity, UErrorCode *status) argument
1565 RegularExpression *regexp = (RegularExpression*)regexp2; local
1578 RegularExpression *regexp = (RegularExpression*)regexp2; local
1588 appendTail(RegularExpression *regexp, UChar **destBuf, int32_t *destCapacity, UErrorCode *status) argument
1718 RegularExpression *regexp = (RegularExpression*)regexp2; local
1730 RegularExpression *regexp = (RegularExpression*)regexp2; local
1778 split(RegularExpression *regexp, UChar *destBuf, int32_t destCapacity, int32_t *requiredCapacity, UChar *destFields[], int32_t destFieldsCapacity, UErrorCode *status) argument
1921 RegularExpression *regexp = (RegularExpression*)regexp2; local
1945 RegularExpression *regexp = (RegularExpression*)regexp2; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-regexp.jar ... org/apache/tools/ant/util/ org/apache/tools/ant/util/regexp/ org/apache/tools/ant/util/regexp/JakartaRegexpMatcher.class JakartaRegexpMatcher ...
/external/smack/src/org/xbill/DNS/
H A DNAPTRRecord.java19 private byte [] flags, service, regexp; field in class:NAPTRRecord
37 * @param regexp The regular/substitution expression.
44 String flags, String service, String regexp, Name replacement)
52 this.regexp = byteArrayFromString(regexp);
66 regexp = in.readCountedString();
77 regexp = byteArrayFromString(st.getString());
97 sb.append(byteArrayToString(regexp, true));
127 /** Returns regexp */
130 return byteArrayToString(regexp, fals
43 NAPTRRecord(Name name, int dclass, long ttl, int order, int preference, String flags, String service, String regexp, Name replacement) argument
[all...]
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dregexp_cache.cc54 const RegExp* regexp = regexp_factory_.CreateRegExp(pattern); local
55 cache_impl_->insert(make_pair(pattern, regexp));
56 return *regexp;

Completed in 331 milliseconds

1234567891011>>