Lines Matching defs:regex
9 /// Locations represents the offsets of each capturing group in a regex for
39 /// This is always at least `1` since every regex has at least `1`
92 /// `RegularExpression` describes types that can implement regex searching.
102 /// the ability to start the search of a regex anywhere in a haystack, which
112 /// Allocates fresh space for all capturing groups in this regex.
131 /// Returns whether the regex matches the text given.
186 /// Return the underlying regex.
187 pub fn regex(&self) -> &R {
250 /// Return the underlying regex.
251 pub fn regex(&self) -> &R {
252 self.0.regex()