Home
last modified time | relevance | path

Searched refs:regex1 (Results 1 - 5 of 5) sorted by relevance

/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/internal/
H A DRegexCacheTest.java35 final String regex1 = "[1-5]"; in testRegexInsertion()
39 regexCache.getPatternForRegex(regex1); in testRegexInsertion()
40 assertTrue(regexCache.containsRegex(regex1)); in testRegexInsertion()
44 assertTrue(regexCache.containsRegex(regex1)); in testRegexInsertion()
46 regexCache.getPatternForRegex(regex1); in testRegexInsertion()
47 assertTrue(regexCache.containsRegex(regex1)); in testRegexInsertion()
53 assertTrue(regexCache.containsRegex(regex1)); in testRegexInsertion()
/third_party/typescript/tests/baselines/reference/
H A DparseRegularExpressionMixedWithComments.js2 var regex1 = / asdf /; variable
10 var regex1 = / asdf /; variable
/third_party/selinux/libselinux/src/
H A Dregex.c273 * metadata, it can only return a match if regex1 == regex2.
277 int regex_cmp(struct regex_data *regex1, struct regex_data *regex2) in regex_cmp() argument
281 rc = pcre2_pattern_info(regex1->regex, PCRE2_INFO_SIZE, &len1); in regex_cmp()
285 if (len1 != len2 || memcmp(regex1->regex, regex2->regex, len1)) in regex_cmp()
521 * metadata, it can only return a match if regex1 == regex2.
525 int regex_cmp(struct regex_data *regex1, struct regex_data *regex2) in regex_cmp() argument
529 rc = pcre_fullinfo(regex1->regex, NULL, PCRE_INFO_SIZE, &len1); in regex_cmp()
533 if (len1 != len2 || memcmp(regex1->regex, regex2->regex, len1)) in regex_cmp()
H A Dregex.h143 * This function compares two compiled regular expressions (regex1 and regex2).
152 int regex_cmp(struct regex_data *regex1, struct regex_data *regex2) ;
/third_party/python/Lib/test/
H A Dtest_struct.py586 regex1 = (
591 with self.assertRaisesRegex(struct.error, regex1):
626 regex1 = (
631 with self.assertRaisesRegex(struct.error, regex1):

Completed in 4 milliseconds