Home
last modified time | relevance | path

Searched refs:FindMatches (Results 1 – 8 of 8) sorted by relevance

/third_party/rust/crates/regex/bench/src/ffi/
Dpcre1.rs77 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
Dre2.rs36 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
Dpcre2.rs73 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
Dtcl.rs97 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
Donig.rs28 ) -> onig::FindMatches<'r, 't> { in find_iter()
/third_party/node/deps/v8/src/regexp/experimental/
Dexperimental-interpreter.cc169 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()
Dexperimental-interpreter.h26 static int FindMatches(Isolate* isolate, RegExp::CallOrigin call_origin,
Dexperimental.cc151 result = ExperimentalRegExpInterpreter::FindMatches( in ExecRawImpl()