/prebuilts/go/darwin-x86/pkg/darwin_amd64_race/index/ |
suffixarray.a | 13 import regexp "regexp" 16 import syntax "regexp/syntax" // indirect 17 type @"regexp/syntax".InstOp uint8 18 func (@"regexp/syntax".i·2 @"regexp/syntax".InstOp) String () (? string) { if uint(@"regexp/syntax".i·2) >= uint(len(@"regexp/syntax".instOpNames)) { return "" }; return @"regexp/syntax".instOpNames[@"regexp/syntax".i·2] [all...] |
/prebuilts/go/linux-x86/pkg/linux_amd64_race/index/ |
suffixarray.a | 13 import regexp "regexp" 16 import syntax "regexp/syntax" // indirect 17 type @"regexp/syntax".InstOp uint8 18 func (@"regexp/syntax".i·2 @"regexp/syntax".InstOp) String () (? string) { if uint(@"regexp/syntax".i·2) >= uint(len(@"regexp/syntax".instOpNames)) { return "" }; return @"regexp/syntax".instOpNames[@"regexp/syntax".i·2] [all...] |
/external/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...] |
RegExp-expected.txt | 29 PASS (new RegExp()).source is '(?:)' 30 PASS Boolean(new RegExp()) is true 31 PASS isNaN(Number(new RegExp())) is true 32 PASS RegExp(/x/).source is 'x' 33 PASS RegExp('x', 'g').global is true 34 PASS RegExp('x').source is 'x' 35 PASS new RegExp('x').source is 'x' 55 PASS var r = new RegExp(/x/); r.global=true; r.lastIndex = -1; typeof r.test('a') is 'boolean' 58 PASS RegExp.$1 is 'abc' 59 PASS RegExp.$2 is 'ghi [all...] |
/external/libxml2/result/regexp/ |
bug420596 | 0 Regexp: (\+|-)(0[0-9]|1[0-1]) 6 Regexp: [+-](0[0-9]|1[0-1])
|
content | 0 Regexp: ((a|b|c)def) 6 Regexp: ((a|b|c|d|e|f)?(g|h|i)+(k|l)*)
|
hard | 0 Regexp: ((a|b|\p{Nd}){1,2}|aaa|bbbb){1,2} 8 Regexp: (\d{1,3}\.){3}\d{1,3}
|
ranges2 | 0 Regexp: (a|b{0,3}){0,1} 10 Regexp: ([0-9]{0,3}|([0-9]{0}|[0-9]{0,3})){0,3}
|
/prebuilts/go/darwin-x86/pkg/darwin_amd64/cmd/pprof/internal/ |
symbolizer.a | 30 import regexp "regexp" // indirect 31 import syntax "regexp/syntax" // indirect 32 type @"regexp/syntax".InstOp uint8 33 func (@"regexp/syntax".i·2 @"regexp/syntax".InstOp) String () (? string) { if uint(@"regexp/syntax".i·2) >= uint(len(@"regexp/syntax".instOpNames)) { return "" }; return @"regexp/syntax".instOpNames[@"regexp/syntax".i·2] [all...] |
/prebuilts/go/linux-x86/pkg/linux_amd64/cmd/pprof/internal/ |
symbolizer.a | 30 import regexp "regexp" // indirect 31 import syntax "regexp/syntax" // indirect 32 type @"regexp/syntax".InstOp uint8 33 func (@"regexp/syntax".i·2 @"regexp/syntax".InstOp) String () (? string) { if uint(@"regexp/syntax".i·2) >= uint(len(@"regexp/syntax".instOpNames)) { return "" }; return @"regexp/syntax".instOpNames[@"regexp/syntax".i·2] [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 | |
/external/regex-re2/re2/ |
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...] |
set.cc | 11 #include "re2/regexp.h" 34 Regexp::ParseFlags pf = static_cast<Regexp::ParseFlags>( 38 re2::Regexp* re = Regexp::Parse(pattern, pf, &status); 49 re2::Regexp* m = re2::Regexp::HaveMatch(n, pf); 52 re2::Regexp** sub = new re2::Regexp*[nsub + 1]; 57 re = re2::Regexp::Concat(sub, nsub + 1, pf) [all...] |
regexp.h | 17 // Any operation that traverses the Regexp structures should be written 18 // using Regexp::Walker (see walker-inl.h), not recursively, because deeply nested 27 // Regexp::Parse parses regular expressions encoded in UTF-8. 39 // Regexp::Parse. In particular, many of the basic Perl additions 42 // If parsed with the flag Regexp::Latin1, both the regular expression 48 // Once Regexp has parsed a regular expression, it provides methods 53 // To call a sublibrary, Regexp does not simply prepare a 55 // sublibrary. Instead, Regexp prepares, from its own parsed form, the 61 // to be that used by Regexp's parser, not the syntax expected 62 // by the sublibrary. Regexp might accept a restricted o [all...] |
/external/regex-re2/re2/testing/ |
mimics_pcre_test.cc | 7 #include "re2/regexp.h" 12 const char* regexp; member in struct:re2::PCRETest 63 Regexp::ParseFlags flags = Regexp::LikePerl; 65 flags = flags | Regexp::Latin1; 66 Regexp* re = Regexp::Parse(t.regexp, flags, NULL); 67 CHECK(re) << " " << t.regexp; 69 << " " << t.regexp << " " [all...] |
parse_test.cc | 10 #include "re2/regexp.h" 14 static const Regexp::ParseFlags TestZeroFlags = Regexp::ParseFlags(1<<30); 17 const char* regexp; member in struct:re2::Test 19 Regexp::ParseFlags flags; 22 static Regexp::ParseFlags kTestFlags = Regexp::MatchNL | 23 Regexp::PerlX | 24 Regexp::PerlClasses | 25 Regexp::UnicodeGroups [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/ |
ResolverTuple.java | 24 private final Pattern regexp; field in class:ResolverTuple 26 public ResolverTuple(Tag tag, Pattern regexp) { 28 this.regexp = regexp; 36 return regexp; 41 return "Tuple tag=" + tag + " regexp=" + regexp;
|
/external/v8/test/mjsunit/regress/ |
regress-3756.js | 10 r0 = RegExp("\\u"); 16 r1 = RegExp("\\usecond"); 24 r2 = RegExp("first\\u"); 33 r3 = RegExp("first\\usecond"); 41 r4 = RegExp("first\\u123second"); 50 r5 = RegExp("\\a"); 56 r6 = RegExp("\\asecond"); 63 r7 = RegExp("first\\a"); 71 r8 = RegExp("first\\asecond");
|
/external/v8/test/mjsunit/es6/ |
regexp-prototype.js | 6 var proto_desc = Object.getOwnPropertyDescriptor(RegExp, "prototype"); 13 assertFalse(proto instanceof RegExp); 17 assertEquals(RegExp, proto_constr.value);
|
/external/v8/test/webkit/fast/regex/ |
quantified-assertions-expected.txt | 30 Testing regexp: /(?=a){0}/gm 31 PASS regexp.test('a') is true 32 PASS regexp.lastIndex is 0 34 Testing regexp: /(?=a){1}/gm 35 PASS regexp.test('a') is true 36 PASS regexp.lastIndex is 0 38 Testing regexp: /(?!a){0}/gm 39 PASS regexp.test('b') is true 40 PASS regexp.lastIndex is 0 42 Testing regexp: /(?!a){1}/g [all...] |
toString.js | 24 description("This page tests toString conversion of RegExp objects, particularly wrt to '/' characters and RegExp.prototype."); 30 re1 = new RegExp(pattern); 38 re1 = new RegExp(pattern); 43 shouldBe("RegExp('/').source", '"\\\\/"'); 44 shouldBe("RegExp('').source", '"(?:)"'); 45 shouldBe("RegExp.prototype.source", '"(?:)"'); 47 shouldBe("RegExp('/').toString()", '"/\\\\//"'); 48 shouldBe("RegExp('').toString()", '"/(?:)/"'); 49 shouldBe("RegExp.prototype.toString()", '"/(?:)/"') [all...] |
/external/v8/test/webkit/ |
regexp-extended-characters-match.js | 28 // shouldThrow('var r = new RegExp("[\u0101-\u0100]"); r.exec("a")', 'null'); 30 shouldBe('(new RegExp("[\u0100-\u0101]")).exec("a")', 'null'); 31 shouldBe('(new RegExp("[\u0100]")).exec("a")', 'null'); 32 shouldBe('(new RegExp("\u0100")).exec("a")', 'null'); 33 shouldBe('(new RegExp("[\u0061]")).exec("a").toString()', '"a"'); 34 shouldBe('(new RegExp("[\u0100-\u0101a]")).exec("a").toString()', '"a"'); 35 shouldBe('(new RegExp("[\u0100a]")).exec("a").toString()', '"a"'); 36 shouldBe('(new RegExp("\u0061")).exec("a").toString()', '"a"'); 37 shouldBe('(new RegExp("[a-\u0100]")).exec("a").toString()', '"a"'); 38 shouldBe('(new RegExp("[\u0100]")).exec("\u0100").toString()', '"\u0100"') [all...] |
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/tests/main/out/ |
atgroup_01.out | 1 @document url(http://www.w3.org/),url-prefix(http://www.w3.org/Style/),domain(mozilla.org),regexp("https:.*"){body{color:purple;background:yellow}
|
atgroup_01.out.b | 1 @document url(http://www.w3.org/),url-prefix(http://www.w3.org/Style/),domain(mozilla.org),regexp("https:.*"){body{color:purple;background:yellow}
|
/external/snakeyaml/ |
.hgignore | 1 syntax: regexp
|