Lines Matching refs:macro_rules
2 macro_rules! text { ($text:expr) => { $text } }
3 macro_rules! t { ($text:expr) => { text!($text) } }
4 macro_rules! match_text { ($text:expr) => { $text.as_str() } }
5 macro_rules! use_ { ($($path: tt)*) => { use regex::$($path)*; } }
6 macro_rules! empty_vec { () => { <Vec<&str>>::new() } }
7 macro_rules! bytes { ($text:expr) => { std::str::from_utf8($text.as_ref()).unwrap() } }
9 macro_rules! no_expand {
16 macro_rules! show { ($text:expr) => { $text } }
21 macro_rules! expand {
36 macro_rules! searcher_expr { ($e:expr) => ($e) }
38 macro_rules! searcher_expr { ($e:expr) => ({}) }