/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/ |
sunspider-regexp-dna.html | 9 DRT.setup("sunspider-regexp-dna");
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
regexp_adapter_icu.h | 27 // ICU regexp factory that lets the user instantiate the underlying 28 // implementation of RegExp and RegExpInput classes based on the ICU regexp 35 virtual RegExp* CreateRegExp(const string& utf8_regexp) const;
|
regexp_adapter_re2.cc | 62 const RE2& regexp, 67 return regex_function(input, regexp, out1, out2, out3); 70 return regex_function(input, regexp, out1, out2); 73 return regex_function(input, regexp, out1); 75 return regex_function(input, regexp); 95 // Implementation of RegExp abstract class. 96 class RE2RegExp : public RegExp { 156 RegExp* RE2RegExpFactory::CreateRegExp(const string& utf8_regexp) const {
|
/external/chromium_org/v8/test/webkit/fast/js/ |
toString-overrides.js | 34 var backupRegExpToString = RegExp.prototype.toString; 35 var backupRegExpToLocaleString = RegExp.prototype.toLocaleString; 40 RegExp.prototype.toString = function() { return "toString2"; } 41 RegExp.prototype.toLocaleString = function() { return "toLocaleString2"; } 50 RegExp.prototype.toLocaleString = "invalid"; 64 RegExp.prototype.toString = backupRegExpToString; 65 RegExp.prototype.toLocaleString = backupRegExpToLocaleString;
|
regexp-extended-characters-crash-expected.txt | 29 PASS new RegExp("[À-?]").toString() is /[À-?]/.toString() 30 PASS new RegExp("[?-?]").toString() is /[?-?]/.toString() 31 PASS new RegExp("[?-?]").toString() is /[?-?]/.toString() 32 PASS new RegExp("[?-?]").toString() is /[?-?]/.toString() 33 PASS new RegExp("[-?]").toString() is /[-?]/.toString()
|
regexp-extended-characters-crash.js | 30 shouldBe('new RegExp("[\u00c0-\u1f4d]").toString()', '/[\u00c0-\u1f4d]/.toString()'); 31 shouldBe('new RegExp("[\u3041-\u3094]").toString()', '/[\u3041-\u3094]/.toString()'); 32 shouldBe('new RegExp("[\u4d00-\u4db5]").toString()', '/[\u4d00-\u4db5]/.toString()'); 33 shouldBe('new RegExp("[\u4e00-\u9fa5]").toString()', '/[\u4e00-\u9fa5]/.toString()'); 36 shouldBe('new RegExp("[\u0001-\u1f4d]").toString()', '/[\u0001-\u1f4d]/.toString()');
|
/external/chromium_org/v8/test/webkit/fast/regex/ |
constructor.js | 24 description("This test checks use of the regexp constructor."); 28 shouldBeTrue("re === RegExp(re)"); 29 shouldBeTrue("re !== new RegExp(re)"); 30 shouldThrow("re === RegExp(re,'i')"); 31 shouldThrow("re !== new RegExp(re,'i')");
|
/external/chromium_org/v8/test/webkit/ |
toString-recursion.js | 34 // RegExp (source) 35 shouldBe("var regexp = /a/; regexp.source = regexp; regexp + ''", "'/a/'");
|
regexp-compile.js | 25 'Test RegExp.compile method.' 28 re = new RegExp("a", "i"); 41 re.compile(new RegExp("c")); 44 re.compile(new RegExp("c", "i")); 49 shouldThrow("re.compile(new RegExp('c'), 'i');"); 55 shouldThrow("re.compile(new RegExp('+'));");
|
/external/chromium_org/third_party/sqlite/src/test/ |
icu.test | 38 # Tests of the REGEXP operator. 40 test_expr icu-1.1 {i1='hello'} {i1 REGEXP 'hello'} 1 41 test_expr icu-1.2 {i1='hello'} {i1 REGEXP '.ello'} 1 42 test_expr icu-1.3 {i1='hello'} {i1 REGEXP '.ell'} 0 43 test_expr icu-1.4 {i1='hello'} {i1 REGEXP '.ell.*'} 1 44 test_expr icu-1.5 {i1=NULL} {i1 REGEXP '.ell.*'} {} 121 # http://src.chromium.org/viewvc/chrome/trunk/src/third_party/sqlite/icu-regexp.patch?revision=34807&view=markup 123 do_catchsql_test icu-5.1 { SELECT regexp('a[abc]c.*', 'abc') } {0 1} 125 SELECT regexp('a[abc]c.*') 126 } {1 {wrong number of arguments to function regexp()}} [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2437.js | 29 // - a regexp fails to match, regardless of global or non-global. 30 // - a global regexp is used in a function that returns multiple results, 32 // repeats the regexp until it fails to match. 33 // Otherwise lastIndex is only set when a global regexp matches, to the index 36 // Test Regexp.prototype.exec 42 // Test Regexp.prototype.test 54 // Test String.prototype.replace with atomic regexp and empty string. 60 // Test String.prototype.replace with non-atomic regexp and empty string. 66 // Test String.prototype.replace with atomic regexp and non-empty string. 72 // Test String.prototype.replace with non-atomic regexp and non-empty string [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
dfa_test.cc | 9 #include "re2/regexp.h" 36 // Create regexp with 2^FLAGS_size states in DFA. 45 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL); 60 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL); 89 // Create regexp with 2^30 states in DFA. 96 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL) 310 const char *regexp; member in struct:re2::ReverseTest [all...] |
compile_test.cc | 10 #include "re2/regexp.h" 18 // the regexp compiles to the expected code. 24 const char* regexp; member in struct:re2::Test 108 Regexp* re = Regexp::Parse(t.regexp, Regexp::PerlX|Regexp::Latin1, NULL); 110 LOG(ERROR) << "Cannot parse: " << t.regexp; 116 LOG(ERROR) << "Cannot compile: " << t.regexp; [all...] |
simplify_test.cc | 10 #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, 146 Regexp::MatchNL | (Regexp::LikePerl & 147 ~Regexp::OneLine), 149 CHECK(re != NULL) << " " << tests[i].regexp << " " << status.Text() [all...] |
exhaustive_tester.h | 18 // then check that NFA, DFA, and PCRE agree about whether each regexp matches 22 // of random regexp and strings, allowing testing of larger expressions 46 void HandleRegexp(const string& regexp); 57 string wrapper_; // Regexp wrapper - either empty or has one %s. 58 string topwrapper_; // Regexp top-level wrapper. 60 int tests_; // Number of regexp tests.
|
/external/regex-re2/re2/testing/ |
dfa_test.cc | 9 #include "re2/regexp.h" 36 // Create regexp with 2^FLAGS_size states in DFA. 45 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL); 60 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL); 89 // Create regexp with 2^30 states in DFA. 96 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL) 310 const char *regexp; member in struct:re2::ReverseTest [all...] |
compile_test.cc | 10 #include "re2/regexp.h" 18 // the regexp compiles to the expected code. 24 const char* regexp; member in struct:re2::Test 108 Regexp* re = Regexp::Parse(t.regexp, Regexp::PerlX|Regexp::Latin1, NULL); 110 LOG(ERROR) << "Cannot parse: " << t.regexp; 116 LOG(ERROR) << "Cannot compile: " << t.regexp; [all...] |
simplify_test.cc | 10 #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, 146 Regexp::MatchNL | (Regexp::LikePerl & 147 ~Regexp::OneLine), 149 CHECK(re != NULL) << " " << tests[i].regexp << " " << status.Text() [all...] |
exhaustive_tester.h | 18 // then check that NFA, DFA, and PCRE agree about whether each regexp matches 22 // of random regexp and strings, allowing testing of larger expressions 46 void HandleRegexp(const string& regexp); 57 string wrapper_; // Regexp wrapper - either empty or has one %s. 58 string topwrapper_; // Regexp top-level wrapper. 60 int tests_; // Number of regexp tests.
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/ |
table2CSV.js | 71 var regexp = new RegExp(/["]/g); 72 var output = input.replace(regexp, "?"); 74 var regexp = new RegExp(/\<[^\<]+\>/g); 75 var output = output.replace(regexp, "");
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/util/ |
table2CSV.js | 71 var regexp = new RegExp(/["]/g); 72 var output = input.replace(regexp, "?"); 74 var regexp = new RegExp(/\<[^\<]+\>/g); 75 var output = output.replace(regexp, "");
|
/external/chromium_org/third_party/tcmalloc/vendor/doc/ |
pprof.1 | 39 \fB\-\-list=\fR<regexp> 42 \fB\-\-disasm=\fR<regexp> 86 \fB\-\-focus=\fR<regexp> 87 Focus on nodes matching <regexp> 89 \fB\-\-ignore=\fR<regexp> 90 Ignore nodes matching <regexp>
|
/external/chromium_org/third_party/libxml/src/ |
testAutomata.c | 38 xmlRegexpPtr regexp = NULL; local 171 regexp = xmlAutomataCompile(am); 174 if (regexp == NULL) { 180 if (regexp == NULL) { 184 exec = xmlRegNewExecCtxt(regexp, NULL, NULL); 198 } else if (regexp != NULL) { 200 exec = xmlRegNewExecCtxt(regexp, NULL, NULL); 209 if (regexp != NULL) 210 xmlRegFreeRegexp(regexp); 225 xmlRegexpPtr regexp; local [all...] |
/external/chromium_org/third_party/sqlite/src/tool/ |
shell4.test | 57 list [regexp {stats: off} $res] 62 list [regexp {stats: on} $res] 68 list [regexp {stats: on} $res] 73 list [regexp {stats: off} $res] 94 list [regexp {stats: off} $res] 101 list [regexp {stats: on} $res] 108 list [regexp {stats: off} $res] 114 list [regexp {Memory Used} $res] \ 115 [regexp {Heap Usage} $res] \ 116 [regexp {Autoindex Inserts} $res [all...] |
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
svn-log.js | 31 function findUsingRegExp(string, regexp) 33 var match = regexp.exec(string); 41 var regexp = /R=([^.]+)/; 42 return findUsingRegExp(message, regexp); 47 var regexp = /BUG=(\d+)/; 48 var bugID = parseInt(findUsingRegExp(message, regexp), 10); 55 var regexp = /git-svn-id: svn:\/\/svn.chromium.org\/blink\/trunk@(\d+)/; 56 var svnRevision = parseInt(findUsingRegExp(message, regexp), 10);
|