Home
last modified time | relevance | path

Searched refs:ismatch (Results 1 - 2 of 2) sorted by relevance

/third_party/rust/crates/regex/tests/
H A Dregression.rs102 ismatch!(partial_anchor_alternate_begin, r"^a|z", "yyyyya", false);
103 ismatch!(partial_anchor_alternate_end, r"a$|z", "ayyyyy", false);
128 ismatch!(strange_anchor_non_complete_prefix, r"a^{2}", "", false);
129 ismatch!(strange_anchor_non_complete_suffix, r"${2}a", "", false);
132 ismatch!(reverse_suffix1, r"[0-4][0-4][0-4]000", "153.230000", true);
133 ismatch!(reverse_suffix2, r"[0-9][0-9][0-9]000", "153.230000\n", true);
157 ismatch!(
165 ismatch!(
174 ismatch!(
218 ismatch!(empty_group_matc
[all...]
H A Dmacros.rs12 macro_rules! ismatch { macros
13 ($name:ident, $re:expr, $text:expr, $ismatch:expr) => {
17 assert_eq!($ismatch, re.is_match(text!($text)));

Completed in 1 milliseconds