Searched refs:FindMatches (Results 1 – 8 of 8) sorted by relevance
/third_party/rust/crates/regex/bench/src/ffi/ |
D | pcre1.rs | 77 pub fn find_iter<'r, 't>(&'r self, text: &'t str) -> FindMatches<'r, 't> { in find_iter() 78 FindMatches { re: self, text: text, last_match_end: 0 } in find_iter() 106 pub struct FindMatches<'r, 't> { struct 112 impl<'r, 't> Iterator for FindMatches<'r, 't> { argument
|
D | re2.rs | 36 pub fn find_iter<'r, 't>(&'r self, text: &'t str) -> FindMatches<'r, 't> { in find_iter() 37 FindMatches { re: self, text: text, last_end: 0, last_match: None } in find_iter() 60 pub struct FindMatches<'r, 't> { struct 69 impl<'r, 't> Iterator for FindMatches<'r, 't> { argument
|
D | pcre2.rs | 73 pub fn find_iter<'r, 't>(&'r self, text: &'t str) -> FindMatches<'r, 't> { in find_iter() 74 FindMatches { re: self, text: text, last_match_end: 0 } in find_iter() 103 pub struct FindMatches<'r, 't> { struct 109 impl<'r, 't> Iterator for FindMatches<'r, 't> { argument
|
D | tcl.rs | 97 pub fn find_iter<'r, 't>(&'r self, text: &'t Text) -> FindMatches<'r, 't> { in find_iter() 98 FindMatches { re: self, text: text, last_match: 0 } in find_iter() 127 pub struct FindMatches<'r, 't> { struct 133 impl<'r, 't> Iterator for FindMatches<'r, 't> { argument
|
D | onig.rs | 28 ) -> onig::FindMatches<'r, 't> { in find_iter()
|
/third_party/node/deps/v8/src/regexp/experimental/ |
D | experimental-interpreter.cc | 169 int FindMatches(int32_t* output_registers, int output_register_count) { in FindMatches() function in v8::internal::__anon4175da610111::NfaInterpreter 559 int ExperimentalRegExpInterpreter::FindMatches( in FindMatches() function in v8::internal::ExperimentalRegExpInterpreter 570 return interpreter.FindMatches(output_registers, output_register_count); in FindMatches() 576 return interpreter.FindMatches(output_registers, output_register_count); in FindMatches()
|
D | experimental-interpreter.h | 26 static int FindMatches(Isolate* isolate, RegExp::CallOrigin call_origin,
|
D | experimental.cc | 151 result = ExperimentalRegExpInterpreter::FindMatches( in ExecRawImpl()
|