/third_party/jerryscript/tests/jerry/ |
H A D | regexp-routines.js | 60 var re1 = /foo/gim; variable 80 re2.compile(re1, "im"); 97 assert (re2.compile(re1) === re2); 98 assert (re2.toString() === re1.toString()); 99 assert (re2.global === re1.global); 100 assert (re2.ignoreCase === re1.ignoreCase); 101 assert (re2.multiline === re1.multiline); 102 assert (re2.source === re1.source);
|
/third_party/rust/crates/regex/tests/ |
H A D | consistent.rs | 132 &(name1, ref re1): &(&str, $regex_type), in quickcheck_regex_eq() 137 re1.clone(), in quickcheck_regex_eq() 144 name1, re1, name2, re2, err in quickcheck_regex_eq() 150 re1: $regex_type, 154 fn new(re1: $regex_type, re2: $regex_type) -> Self { in new() 155 RegexEqualityTest { re1: re1, re2: re2 } in new() 164 if self.re1.find(&input) != self.re2.find(input) { in result() 171 let cap1 = self.re1.captures(input); in result() 193 let fi1 = self.re1 in result() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.js | 30 var re1 = a == b; variable 61 var re1 = a == b;
variable
|
H A D | comparisonOperatorWithSubtypeObjectOnOptionalProperty.js | 31 var re1 = a == b; variable 62 var re1 = a == b;
variable
|
H A D | arithmeticOperatorWithOnlyNullValueOrUndefinedValue.js | 27 var re1 = null << null; variable 84 var re1 = null << null;
variable
|
H A D | comparisonOperatorWithIdenticalPrimitiveType.js | 47 var re1 = a == a; variable 127 var re1 = a == a;
variable
|
H A D | comparisonOperatorWithSubtypeObjectOnProperty.js | 58 var re1 = a1 == b1; variable 156 var re1 = a1 == b1;
variable
|
H A D | comparisonOperatorWithSubtypeEnumAndNumber.js | 40 var re1 = a == b; variable 109 var re1 = a == b;
variable
|
H A D | comparisonOperatorWithTypeParameter.js | 44 var re1 = t < a; 119 var re1 = t < a;
|
H A D | arithmeticOperatorWithAnyAndNumber.js | 46 var re1 = a << a; variable 145 var re1 = a << a;
variable
|
H A D | arithmeticOperatorWithNullValueAndValidOperands.js | 54 var re1 = null << a; variable 160 var re1 = null << a;
variable
|
H A D | logicalAndOperatorWithEveryType.js | 60 var re1 = a1 && a5; variable 183 var re1 = a1 && a5;
variable
|
H A D | logicalOrOperatorWithEveryType.js | 62 var re1 = a1 || a5; // any || void is any variable 187 var re1 = a1 || a5; // any || void is any
variable
|
H A D | arithmeticOperatorWithUndefinedValueAndValidOperands.js | 54 var re1 = undefined << a; variable 160 var re1 = undefined << a;
variable
|
H A D | arithmeticOperatorWithEnum.js | 70 var re1 = c << a; variable 216 var re1 = c << a;
variable
|
H A D | arithmeticOperatorWithEnumUnion.js | 74 var re1 = c << a; variable 225 var re1 = c << a;
variable
|
/third_party/node/test/parallel/ |
H A D | test-assert-deep.js | 139 const re1 = new RegExp('test'); 142 assertNotDeepOrStrict(re1, re2); 144 () => assert.deepStrictEqual(re1, re2), 715 const re1 = /a/g; 716 re1.lastIndex = 3; 717 assert.notDeepEqual(re1, /a/g); 855 const re1 = /a/; 856 re1.lastIndex = 3; 857 assert.notDeepStrictEqual(re1, /a/);
|
H A D | test-util-isDeepStrictEqual.js | 51 const re1 = new RegExp('test'); 55 assert.strictEqual(util.isDeepStrictEqual(re1, re2), false);
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | regextst.cpp | 1516 UnicodeString re1("abc[a-l][m-z]"); in API_Pattern() 1521 RegexPattern *pat1 = RegexPattern::compile(re1, 0, pe, status); in API_Pattern() 1541 RegexPattern *pat1a = RegexPattern::compile(re1, pe, status); in API_Pattern() 1547 RegexPattern *pat1b = RegexPattern::compile(re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern() 2796 UText re1 = UTEXT_INITIALIZER; in API_Pattern_UTF8() local 2803 utext_openUTF8(&re1, str_abcalmz, -1, &status); in API_Pattern_UTF8() 2806 RegexPattern *pat1 = RegexPattern::compile(&re1, 0, pe, status); in API_Pattern_UTF8() 2826 RegexPattern *pat1a = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8() 2832 RegexPattern *pat1b = RegexPattern::compile(&re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern_UTF8() 2850 utext_close(&re1); in API_Pattern_UTF8() [all...] |
/third_party/backends/backend/ |
H A D | agfafocus.c | 316 Byte re1[3]; in wait_ready() member 440 Byte re1[4]; in set_window() member 645 Byte re1[3]; in upload_dither_matrix() member 692 Byte re1[4]; 748 Byte re1[4]; in read_data() member
|
H A D | s9036.c | 308 Byte re1[4]; in set_window() member
|
/third_party/googletest/googletest/test/ |
H A D | googletest-port-test.cc | 893 const RE re1("a"); in TEST() 894 EXPECT_TRUE(RE::FullMatch("a", re1)); in TEST()
|