/external/chromium_org/v8/test/webkit/fast/regex/ |
malformed-escapes.js | 28 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.test('xg')") [all...] |
quantified-assertions.js | 28 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.test('a')") [all...] |
malformed-escapes-expected.txt | 30 Testing regexp: /\ug/gm 31 PASS regexp.test('ug') is true 32 PASS regexp.lastIndex is 2 34 Testing regexp: /\xg/gm 35 PASS regexp.test('xg') is true 36 PASS regexp.lastIndex is 2 38 Testing regexp: /\c_/gm 39 PASS regexp.test('\\c_') is true 40 PASS regexp.lastIndex is 3 42 Testing regexp: /[\B]/g [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
re.h | 80 typedef struct RegExp { 88 struct RegExp *exp; 89 struct RegExp *ctx; 97 struct RegExp *exp1, *exp2; 100 struct RegExp *exp; 103 struct RegExp *exp; 108 } RegExp; 110 static RegExp * 111 RegExp_isA(RegExp *r, RegExpType t) 116 void RegExp_split(RegExp*, CharSet*) [all...] |
parser.c | 10 static RegExp *parse_expr(void); 11 static RegExp *parse_diff(void); 12 static RegExp *parse_term(void); 13 static RegExp *parse_factor(void); 14 static RegExp *parse_primary(void); 17 static RegExp *spec; 40 RegExp *re, *look; 56 Scanner_fatal(in, "missing `;' after regexp"); 77 Scanner_fatal(in, "missing code after regexp"); 85 static RegExp * [all...] |
/external/chromium_org/v8/test/mjsunit/ |
regexp-static.js | 28 // Test the (deprecated as of JS 1.5) properties of the RegExp function. 34 assertEquals(s, RegExp.input); 35 assertEquals('123.456', RegExp.lastMatch); 36 assertEquals('456', RegExp.lastParen); 37 assertEquals('abc', RegExp.leftContext); 38 assertEquals('def', RegExp.rightContext); 40 assertEquals(s, RegExp['$_']); 41 assertEquals('123.456', RegExp['$&']); 42 assertEquals('456', RegExp['$+']); 43 assertEquals('abc', RegExp['$`']) [all...] |
regexp-capture-3.js | 30 assertEquals("abcd", RegExp.input); 31 assertEquals("a", RegExp.leftContext); 32 assertEquals("b", RegExp.lastMatch); 33 assertEquals("", RegExp.lastParen); 34 assertEquals(undefined, RegExp.lastIndex); 35 assertEquals(undefined, RegExp.index); 36 assertEquals("cd", RegExp.rightContext); 38 assertEquals("", RegExp['$' + i]); 46 assertEquals("abcdabcd", RegExp.input); 47 assertEquals("abcda", RegExp.leftContext) [all...] |
/external/v8/test/mjsunit/ |
regexp-static.js | 28 // Test the (deprecated as of JS 1.5) properties of the RegExp function. 34 assertEquals(s, RegExp.input); 35 assertEquals('123.456', RegExp.lastMatch); 36 assertEquals('456', RegExp.lastParen); 37 assertEquals('abc', RegExp.leftContext); 38 assertEquals('def', RegExp.rightContext); 40 assertEquals(s, RegExp['$_']); 41 assertEquals('123.456', RegExp['$&']); 42 assertEquals('456', RegExp['$+']); 43 assertEquals('abc', RegExp['$`']) [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
regexp_test.cc | 10 #include "re2/regexp.h" 15 TEST(Regexp, BigRef) { 16 Regexp* re; 17 re = Regexp::Parse("x", Regexp::NoParseFlags, NULL); 28 TEST(Regexp, BigConcat) { 29 Regexp* x; 30 x = Regexp::Parse("x", Regexp::NoParseFlags, NULL); 31 vector<Regexp*> v(90000, x); // ToString bails out at 10000 [all...] |
required_prefix_test.cc | 6 #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 43 Regexp::ParseFlags flags = Regexp::LikePerl; 45 flags = flags | Regexp::Latin1; 46 Regexp* re = Regexp::Parse(t.regexp, flags, NULL) [all...] |
/external/regex-re2/re2/testing/ |
regexp_test.cc | 10 #include "re2/regexp.h" 15 TEST(Regexp, BigRef) { 16 Regexp* re; 17 re = Regexp::Parse("x", Regexp::NoParseFlags, NULL); 28 TEST(Regexp, BigConcat) { 29 Regexp* x; 30 x = Regexp::Parse("x", Regexp::NoParseFlags, NULL); 31 vector<Regexp*> v(90000, x); // ToString bails out at 10000 [all...] |
required_prefix_test.cc | 6 #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 43 Regexp::ParseFlags flags = Regexp::LikePerl; 45 flags = flags | Regexp::Latin1; 46 Regexp* re = Regexp::Parse(t.regexp, flags, NULL) [all...] |
/external/chromium/build/mac/ |
chrome_mac.croc | 11 'regexp' : '.*(_|/)(chromeos|linux|win|views)(\\.|_)', 16 'regexp' : '.*/chromeos/', 22 'regexp' : '.*_test_mac\\.', 28 'regexp' : '.*\\.m$', 32 'regexp' : '.*\\.mm$',
|
/external/chromium_org/build/mac/ |
chrome_mac.croc | 11 'regexp' : '.*(_|/)(chromeos|linux|win|views)(\\.|_)', 16 'regexp' : '.*/chromeos/', 22 'regexp' : '.*_test_mac\\.', 28 'regexp' : '.*\\.m$', 32 'regexp' : '.*\\.mm$',
|
/external/chromium_org/third_party/re2/re2/ |
simplify.cc | 10 #include "re2/regexp.h" 15 // Parses the regexp src and then simplifies it and sets *dst to the 18 bool Regexp::SimplifyRegexp(const StringPiece& src, ParseFlags flags, 21 Regexp* re = Parse(src, flags, status); 24 Regexp* sre = re->Simplify(); 41 // is this Regexp* simple? 42 bool Regexp::ComputeSimple() { 43 Regexp** subs; 102 // The child_args are simplified Regexp*s. 103 class SimplifyWalker : public Regexp::Walker<Regexp*> [all...] |
regexp.cc | 9 #include "re2/regexp.h" 16 Regexp::Regexp(RegexpOp op, ParseFlags parse_flags) 32 Regexp::~Regexp() { 34 LOG(DFATAL) << "Regexp not destroyed."; 52 // If it's possible to destroy this regexp without recurring, 54 bool Regexp::QuickDestroy() { 62 static map<Regexp*, int> *ref_map; 65 int Regexp::Ref() [all...] |
/external/regex-re2/re2/ |
simplify.cc | 10 #include "re2/regexp.h" 15 // Parses the regexp src and then simplifies it and sets *dst to the 18 bool Regexp::SimplifyRegexp(const StringPiece& src, ParseFlags flags, 21 Regexp* re = Parse(src, flags, status); 24 Regexp* sre = re->Simplify(); 41 // is this Regexp* simple? 42 bool Regexp::ComputeSimple() { 43 Regexp** subs; 102 // The child_args are simplified Regexp*s. 103 class SimplifyWalker : public Regexp::Walker<Regexp*> [all...] |
regexp.cc | 9 #include "re2/regexp.h" 16 Regexp::Regexp(RegexpOp op, ParseFlags parse_flags) 32 Regexp::~Regexp() { 34 LOG(DFATAL) << "Regexp not destroyed."; 52 // If it's possible to destroy this regexp without recurring, 54 bool Regexp::QuickDestroy() { 62 static map<Regexp*, int> *ref_map; 65 int Regexp::Ref() [all...] |
/external/chromium/build/win/ |
chrome_win.croc | 11 'regexp' : '.*(_|/)(chromeos|linux|posix)(\\.|_)', 16 'regexp' : '.*/chromeos/', 22 'regexp' : '.*_test_win\\.',
|
/external/chromium_org/build/win/ |
chrome_win.croc | 11 'regexp' : '.*(_|/)(chromeos|linux|posix)(\\.|_)', 16 'regexp' : '.*/chromeos/', 22 'regexp' : '.*_test_win\\.',
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/ |
LIST | 5 v8-regexp
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/ |
LIST | 5 v8-regexp
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/ |
LIST | 5 v8-regexp
|
/external/chromium_org/v8/test/webkit/fast/js/kde/ |
RegExp.js | 25 shouldBe("(new RegExp()).source", "'(?:)'"); 26 shouldBe("Boolean(new RegExp())", "true"); 27 shouldBeTrue("isNaN(Number(new RegExp()))"); 29 // RegExp constructor called as a function 30 shouldBe("RegExp(/x/).source", "'x'"); 31 //shouldBe("RegExp(/x/, 'g').source", "'/x/'"); // can't supply flags when constructing one RegExp from another, says mozilla 32 shouldBe("RegExp('x', 'g').global", "true"); 33 shouldBe("RegExp('x').source", "'x'"); 35 // RegExp constructo [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-apache-regexp.jar | |