Home
last modified time | relevance | path

Searched defs:re (Results 1 – 25 of 663) sorted by relevance

12345678910>>...27

/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/regex-1.11.1/src/
Dlib.rs19 let re = Regex::new(r"(?m)^([^:]+):([0-9]+):(.+)$").unwrap(); localVariable
103 let re = Regex::new(r"Hello (?<name>\w+)!").unwrap(); localVariable
163 let re = Regex::new(r"Homer (.)\. Simpson").unwrap(); localVariable
201 let re = Regex::new(r"Homer (?<middle>.)\. Simpson").unwrap(); localVariable
219 let re = Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap(); localVariable
234 let re = Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap(); localVariable
256 let re = Regex::new(r"[0-9]{4}-[0-9]{2}-[0-9]{2}").unwrap(); localVariable
274 let re = Regex::new(r"(?<y>[0-9]{4})-(?<m>[0-9]{2})-(?<d>[0-9]{2})").unwrap(); localVariable
306 let re = Regex::new(r"([0-9]{4})-([0-9]{2})-([0-9]{2})").unwrap(); localVariable
337 let re = Regex::new(r"(?<y>\d{4})-(?<m>\d{2})-(?<d>\d{2})").unwrap(); localVariable
[all …]
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/regex-1.11.1/src/
Dlib.rs19 let re = Regex::new(r"(?m)^([^:]+):([0-9]+):(.+)$").unwrap(); localVariable
103 let re = Regex::new(r"Hello (?<name>\w+)!").unwrap(); localVariable
163 let re = Regex::new(r"Homer (.)\. Simpson").unwrap(); localVariable
201 let re = Regex::new(r"Homer (?<middle>.)\. Simpson").unwrap(); localVariable
219 let re = Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap(); localVariable
234 let re = Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap(); localVariable
256 let re = Regex::new(r"[0-9]{4}-[0-9]{2}-[0-9]{2}").unwrap(); localVariable
274 let re = Regex::new(r"(?<y>[0-9]{4})-(?<m>[0-9]{2})-(?<d>[0-9]{2})").unwrap(); localVariable
306 let re = Regex::new(r"([0-9]{4})-([0-9]{2})-([0-9]{2})").unwrap(); localVariable
337 let re = Regex::new(r"(?<y>\d{4})-(?<m>\d{2})-(?<d>\d{2})").unwrap(); localVariable
[all …]
/external/libcxx/test/std/re/re.regex/re.regex.construct/
Ddeduct.pass.cpp42 std::basic_regex re(s1.begin(), s1.end()); in main() local
51 std::basic_regex re(s1.begin(), s1.end(), std::regex_constants::basic); in main() local
61 std::basic_regex re("(a([bc]))"s); in main() local
69 std::basic_regex re(L"(a([bc]))"s, std::regex_constants::awk); in main() local
77 std::basic_regex re("ABCDE"); in main() local
85 std::basic_regex re(L"ABCDE", std::regex_constants::grep); in main() local
93 std::basic_regex re("ABCDEDEF", 7); in main() local
101 std::basic_regex re(L"ABCDEDEF", 8, std::regex_constants::awk); in main() local
110 std::basic_regex re(source); in main() local
124 std::basic_regex re({'A', 'B', 'F', 'E', 'D'}); in main() local
[all …]
/external/rust/android-crates-io/crates/regex/tests/
Dapi.rs3 let re = regex!(""); in empty_regex_empty_match() localVariable
9 let re = regex!(""); in empty_regex_nonempty_match() localVariable
15 let re = regex!(r"[0-9]*"); in one_zero_length_match() localVariable
21 let re = regex!(r"[0-9]*"); in many_zero_length_match() localVariable
30 let re = regex!(r"[0-9]?"); in many_sequential_zero_length_match() localVariable
39 let re = regex!(r"([\x{5b}\x{5d}])"); in quoted_bracket_set() localVariable
41 let re = regex!(r"([\[\]])"); in quoted_bracket_set() localVariable
47 let re = regex!(r"([\[-z])"); in first_range_starts_with_left_bracket() localVariable
53 let re = regex!(r"([\[-\x{5d}])"); in range_ends_with_escape() localVariable
59 let re = regex!(r".*?"); in empty_match_find_iter() localVariable
[all …]
/external/cronet/tot/third_party/libc++/src/test/std/re/re.regex/re.regex.construct/
Ddeduct.pass.cpp38 std::basic_regex re(s1.begin(), s1.end()); in main() local
48 std::basic_regex re(s1.begin(), s1.end(), std::regex_constants::basic); in main() local
59 std::basic_regex re("(a([bc]))"s); in main() local
68 std::basic_regex re(L"(a([bc]))"s, std::regex_constants::awk); in main() local
77 std::basic_regex re("ABCDE"); in main() local
86 std::basic_regex re(L"ABCDE", std::regex_constants::grep); in main() local
95 std::basic_regex re("ABCDEDEF", 7); in main() local
104 std::basic_regex re(L"ABCDEDEF", 8, std::regex_constants::awk); in main() local
114 std::basic_regex re(source); in main() local
128 std::basic_regex re({'A', 'B', 'F', 'E', 'D'}); in main() local
[all …]
/external/cronet/stable/third_party/libc++/src/test/std/re/re.regex/re.regex.construct/
Ddeduct.pass.cpp38 std::basic_regex re(s1.begin(), s1.end()); in main() local
48 std::basic_regex re(s1.begin(), s1.end(), std::regex_constants::basic); in main() local
59 std::basic_regex re("(a([bc]))"s); in main() local
68 std::basic_regex re(L"(a([bc]))"s, std::regex_constants::awk); in main() local
77 std::basic_regex re("ABCDE"); in main() local
86 std::basic_regex re(L"ABCDE", std::regex_constants::grep); in main() local
95 std::basic_regex re("ABCDEDEF", 7); in main() local
104 std::basic_regex re(L"ABCDEDEF", 8, std::regex_constants::awk); in main() local
114 std::basic_regex re(source); in main() local
128 std::basic_regex re({'A', 'B', 'F', 'E', 'D'}); in main() local
[all …]
/external/cronet/tot/third_party/libc++/src/test/std/re/re.const/re.matchflag/
Dmatch_not_eol.pass.cpp24 std::regex re("foo$"); in main() local
31 std::regex re("foo"); in main() local
38 std::regex re("foo$"); in main() local
45 std::regex re("foo"); in main() local
52 std::regex re("$"); in main() local
66 std::regex re("$", std::regex::multiline); in main() local
77 std::regex re("$"); in main() local
84 std::regex re("^b*$"); in main() local
Dmatch_not_bol.pass.cpp24 std::regex re("^foo"); in main() local
31 std::regex re("foo"); in main() local
38 std::regex re("^foo"); in main() local
45 std::regex re("foo"); in main() local
/external/cronet/stable/third_party/libc++/src/test/std/re/re.const/re.matchflag/
Dmatch_not_eol.pass.cpp24 std::regex re("foo$"); in main() local
31 std::regex re("foo"); in main() local
38 std::regex re("foo$"); in main() local
45 std::regex re("foo"); in main() local
52 std::regex re("$"); in main() local
66 std::regex re("$", std::regex::multiline); in main() local
77 std::regex re("$"); in main() local
84 std::regex re("^b*$"); in main() local
Dmatch_not_bol.pass.cpp24 std::regex re("^foo"); in main() local
31 std::regex re("foo"); in main() local
38 std::regex re("^foo"); in main() local
45 std::regex re("foo"); in main() local
/external/rust/android-crates-io/crates/regex/src/
Dlib.rs33 let re = Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap(); localVariable
91 let re = Regex::new(r"(\d{4})-(\d{2})-(\d{2})").unwrap(); localVariable
116 let re = Regex::new(r"(?P<y>\d{4})-(?P<m>\d{2})-(?P<d>\d{2})").unwrap(); localVariable
133 let re = Regex::new(r"(?x) localVariable
214 let re = Regex::new(r"(?i)Δ+").unwrap(); localVariable
241 let re = Regex::new(r"[\pN\p{Greek}\p{Cherokee}]+").unwrap(); localVariable
391 let re = Regex::new(r"(?i)a+(?-i)b+").unwrap(); localVariable
405 let re = Regex::new(r"(?m)^line \d+").unwrap(); localVariable
414 let re = Regex::new(r"(?m)^").unwrap(); localVariable
425 let re = Regex::new(r"(?-u:\b).+(?-u:\b)").unwrap(); localVariable
[all …]
/external/rust/android-crates-io/crates/regex-syntax/benches/
Dbench.rs11 let re = r"^bc(d|e)*$"; in parse_simple1() localVariable
19 let re = r"'[a-zA-Z_][a-zA-Z0-9_]*(')\b"; in parse_simple2() localVariable
27 let re = r"\p{L}|\p{N}|\s|.|\d"; in parse_small1() localVariable
35 let re = r"\pL\p{Greek}\p{Hiragana}\p{Alphabetic}\p{Hebrew}\p{Arabic}"; in parse_medium1() localVariable
43 let re = r"\s\S\w\W\d\D"; in parse_medium2() localVariable
51 let re = in parse_medium3() localVariable
60 let re = r"\p{L}{100}"; in parse_huge() localVariable
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/regex-syntax-0.8.5/benches/
Dbench.rs11 let re = r"^bc(d|e)*$"; in parse_simple1() localVariable
19 let re = r"'[a-zA-Z_][a-zA-Z0-9_]*(')\b"; in parse_simple2() localVariable
27 let re = r"\p{L}|\p{N}|\s|.|\d"; in parse_small1() localVariable
35 let re = r"\pL\p{Greek}\p{Hiragana}\p{Alphabetic}\p{Hebrew}\p{Arabic}"; in parse_medium1() localVariable
43 let re = r"\s\S\w\W\d\D"; in parse_medium2() localVariable
51 let re = in parse_medium3() localVariable
60 let re = r"\p{L}{100}"; in parse_huge() localVariable
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/regex-syntax-0.8.5/benches/
Dbench.rs11 let re = r"^bc(d|e)*$"; in parse_simple1() localVariable
19 let re = r"'[a-zA-Z_][a-zA-Z0-9_]*(')\b"; in parse_simple2() localVariable
27 let re = r"\p{L}|\p{N}|\s|.|\d"; in parse_small1() localVariable
35 let re = r"\pL\p{Greek}\p{Hiragana}\p{Alphabetic}\p{Hebrew}\p{Arabic}"; in parse_medium1() localVariable
43 let re = r"\s\S\w\W\d\D"; in parse_medium2() localVariable
51 let re = in parse_medium3() localVariable
60 let re = r"\p{L}{100}"; in parse_huge() localVariable
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/regex-1.11.1/tests/
Dmisc.rs28 let re = regex!(r"(.)(?P<a>.)"); in capture_names() localVariable
39 let re = regex!(r"^(?P<name>.+)$"); in capture_index() localVariable
49 let re = regex!(r"^(?P<name>.+)$"); in capture_index_panic_usize() localVariable
57 let re = regex!(r"^(?P<name>.+)$"); in capture_index_panic_name() localVariable
67 let re = regex!(r"(?P<number>[0-9]+)"); in capture_index_lifetime() localVariable
76 let re = regex!(r"(.)(?P<a>a)?(.)(?P<b>.)"); in capture_misc() localVariable
101 let re = regex!(r"([a-z])(([a-z])|([0-9]))"); in sub_capture_matches() localVariable
135 let re = regex!(r"[01]*1[01]{20}$"); in dfa_handles_pathological_case() localVariable
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/regex-1.11.1/tests/
Dmisc.rs28 let re = regex!(r"(.)(?P<a>.)"); in capture_names() localVariable
39 let re = regex!(r"^(?P<name>.+)$"); in capture_index() localVariable
49 let re = regex!(r"^(?P<name>.+)$"); in capture_index_panic_usize() localVariable
57 let re = regex!(r"^(?P<name>.+)$"); in capture_index_panic_name() localVariable
67 let re = regex!(r"(?P<number>[0-9]+)"); in capture_index_lifetime() localVariable
76 let re = regex!(r"(.)(?P<a>a)?(.)(?P<b>.)"); in capture_misc() localVariable
101 let re = regex!(r"([a-z])(([a-z])|([0-9]))"); in sub_capture_matches() localVariable
135 let re = regex!(r"[01]*1[01]{20}$"); in dfa_handles_pathological_case() localVariable
/external/cronet/stable/third_party/boringssl/src/crypto/perlasm/
Dx86_64-xlate.pl108 sub re { subroutine
189 sub re { subroutine
231 sub re { subroutine
335 sub re { subroutine
377 sub re { subroutine
444 sub re { subroutine
637 sub re { subroutine
920 sub re { subroutine
1078 sub re { subroutine
/external/rust/android-crates-io/crates/ring/crypto/perlasm/
Dx86_64-xlate.pl108 sub re { subroutine
189 sub re { subroutine
231 sub re { subroutine
335 sub re { subroutine
377 sub re { subroutine
444 sub re { subroutine
637 sub re { subroutine
907 sub re { subroutine
1052 sub re { subroutine
/external/boringssl/src/crypto/perlasm/
Dx86_64-xlate.pl108 sub re { subroutine
189 sub re { subroutine
231 sub re { subroutine
335 sub re { subroutine
377 sub re { subroutine
444 sub re { subroutine
637 sub re { subroutine
920 sub re { subroutine
1078 sub re { subroutine
/external/cronet/tot/third_party/boringssl/src/crypto/perlasm/
Dx86_64-xlate.pl108 sub re { subroutine
189 sub re { subroutine
231 sub re { subroutine
335 sub re { subroutine
377 sub re { subroutine
444 sub re { subroutine
637 sub re { subroutine
920 sub re { subroutine
1078 sub re { subroutine
/external/libcxx/test/std/re/re.alg/re.alg.match/
Dlookahead_capture.pass.cpp31 std::regex re("^(?=(.))a$"); in main() local
43 std::regex re("^(a)(?=(.))(b)$"); in main() local
57 std::regex re("^(.)(?=(.)(?=.(.)))(...)$"); in main() local
72 std::regex re("^(a)(?!([^b]))(.c)$"); in main() local
86 std::regex re("^(?!((b)))(?=(.))(?!(abc)).b$"); in main() local
/external/cronet/tot/third_party/libc++/src/test/std/re/re.alg/re.alg.match/
Dlookahead_capture.pass.cpp30 std::regex re("^(?=(.))a$"); in main() local
42 std::regex re("^(a)(?=(.))(b)$"); in main() local
56 std::regex re("^(.)(?=(.)(?=.(.)))(...)$"); in main() local
71 std::regex re("^(a)(?!([^b]))(.c)$"); in main() local
85 std::regex re("^(?!((b)))(?=(.))(?!(abc)).b$"); in main() local
/external/cronet/stable/third_party/libc++/src/test/std/re/re.alg/re.alg.match/
Dlookahead_capture.pass.cpp30 std::regex re("^(?=(.))a$"); in main() local
42 std::regex re("^(a)(?=(.))(b)$"); in main() local
56 std::regex re("^(.)(?=(.)(?=.(.)))(...)$"); in main() local
71 std::regex re("^(a)(?!([^b]))(.c)$"); in main() local
85 std::regex re("^(?!((b)))(?=(.))(?!(abc)).b$"); in main() local
/external/libcxx/test/std/re/re.const/re.matchflag/
Dmatch_not_bol.pass.cpp26 std::regex re("^foo"); in main() local
33 std::regex re("foo"); in main() local
40 std::regex re("^foo"); in main() local
47 std::regex re("foo"); in main() local
Dmatch_not_eol.pass.cpp26 std::regex re("foo$"); in main() local
33 std::regex re("foo"); in main() local
40 std::regex re("foo$"); in main() local
47 std::regex re("foo"); in main() local

12345678910>>...27