Home
last modified time | relevance | path

Searched defs:Regex (Results 1 – 25 of 548) sorted by relevance

12345678910>>...22

/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/dfa/
H A Dregex.rs183 impl Regex { impl
202 pub fn new(pattern: &str) -> Result<Regex, BuildError> { in new()
228 ) -> Result<Regex, BuildError> { in new_many()
234 impl Regex<sparse::DFA<Vec<u8>>> { impl
288 impl Regex<dense::DFA<&'static [u32]>> { implementation
322 impl<A: Automaton> Regex<A> { implementation
448 impl<A: Automaton> Regex<A> { impl
549 impl<A: Automaton> Regex<A> { impl
712 pub fn build(&self, pattern: &str) -> Result<Regex, BuildError> { in build()
733 ) -> Result<Regex, BuildError> { in build_many()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/hybrid/
H A Dregex.rs82 pub struct Regex { struct
99 impl Regex { argument
120 pub fn new(pattern: &str) -> Result<Regex, BuildError> { in new()
148 ) -> Result<Regex, BuildError> { in new_many()
243 impl Regex { implementation
411 impl Regex { implementation
521 impl Regex { implementation
659 pub fn reset(&mut self, re: &Regex) { in reset()
782 pub fn build(&self, pattern: &str) -> Result<Regex, BuildError> { in build()
791 ) -> Result<Regex, BuildError> { in build_many()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/regex-automata/src/
Dregex.rs58 pub struct Regex<D: DFA = DenseDFA<Vec<usize>, usize>> { struct
73 /// The type of the DFA used by a `Regex` corresponds to the `D` type argument
109 pub struct Regex<D> { struct
115 impl Regex { argument
137 pub fn new(pattern: &str) -> Result<Regex> { in new()
143 impl Regex<SparseDFA<Vec<u8>, usize>> { impl
172 impl<D: DFA> Regex<D> { implementation
487 pub fn build(&self, pattern: &str) -> Result<Regex> { in build()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/meta/
H A Dregex.rs235 pub struct Regex { struct
237 imp: Arc<RegexI>, argument
254 /// The internal implementation of `Regex`, split out so that it can be wrapped argument
281 impl Regex { impl
302 pub fn new(pattern: &str) -> Result<Regex, BuildError> { in new()
395 ) -> Result<Regex, BuildError> { in new_many()
453 impl Regex { implementation
898 impl Regex { implementation
1208 impl Regex { impl
1498 impl Regex { impl
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-1.10.4/src/regex/
H A Dstring.rs101 pub struct Regex { struct
102 pub(crate) meta: meta::Regex, argument
106 impl core::fmt::Display for Regex { implementation
113 impl core::fmt::Debug for Regex { implementation
120 impl core::str::FromStr for Regex { implementation
124 fn from_str(s: &str) -> Result<Regex, Error> { in from_str()
129 impl TryFrom<&str> for Regex { implementation
133 fn try_from(s: &str) -> Result<Regex, Error> { in try_from()
138 impl TryFrom<String> for Regex { implementation
142 fn try_from(s: String) -> Result<Regex, Error> { in try_from()
[all …]
H A Dbytes.rs99 pub struct Regex { struct
100 pub(crate) meta: meta::Regex, argument
104 impl core::fmt::Display for Regex { implementation
111 impl core::fmt::Debug for Regex { implementation
118 impl core::str::FromStr for Regex { implementation
122 fn from_str(s: &str) -> Result<Regex, Error> { in from_str()
127 impl TryFrom<&str> for Regex { implementation
131 fn try_from(s: &str) -> Result<Regex, Error> { in try_from()
136 impl TryFrom<String> for Regex { implementation
140 fn try_from(s: String) -> Result<Regex, Error> { in try_from()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/regex/src/
Dre_bytes.rs78 pub struct Regex(Exec); struct
80 impl fmt::Display for Regex { implementation
87 impl fmt::Debug for Regex { implementation
98 impl From<Exec> for Regex { implementation
99 fn from(exec: Exec) -> Regex { in from()
104 impl FromStr for Regex { implementation
108 fn from_str(s: &str) -> Result<Regex, Error> { in from_str()
114 impl Regex { implementation
119 pub fn new(re: &str) -> Result<Regex, Error> { in new()
534 impl Regex { implementation
[all …]
Dre_unicode.rs136 pub struct Regex(Exec); struct
138 impl fmt::Display for Regex { implementation
145 impl fmt::Debug for Regex { implementation
153 impl From<Exec> for Regex { implementation
154 fn from(exec: Exec) -> Regex { in from()
159 impl FromStr for Regex { implementation
163 fn from_str(s: &str) -> Result<Regex, Error> { in from_str()
169 impl Regex { impl
174 pub fn new(re: &str) -> Result<Regex, Error> { in new()
592 impl Regex { implementation
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
H A DRegex.cpp27 Regex::Regex() : preg(nullptr), error(REG_BADPAT) {} in Regex() function in Regex
29 Regex::Regex(StringRef regex, RegexFlags Flags) { in Regex() function in Regex
42 Regex::Regex(StringRef regex, unsigned Flags) in Regex() function in Regex
45 Regex::Regex(Regex &&regex) { in Regex() function in Regex
/aosp_15_r20/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DRegex.cpp22 Regex::Regex() : preg(nullptr), error(REG_BADPAT) {} in Regex() function in Regex
24 Regex::Regex(StringRef regex, unsigned Flags) { in Regex() function in Regex
37 Regex::Regex(Regex &&regex) { in Regex() function in Regex
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DRegex.cpp26 Regex::Regex() : preg(nullptr), error(REG_BADPAT) {} in Regex() function in Regex
28 Regex::Regex(StringRef regex, unsigned Flags) { in Regex() function in Regex
41 Regex::Regex(Regex &&regex) { in Regex() function in Regex
/aosp_15_r20/external/rust/android-crates-io/crates/combine/src/parser/
Dregex.rs64 pub trait Regex<Range> { interface
76 impl<'a, R, Range> Regex<Range> for &'a R impl
148 impl<'a> Regex<&'a str> for regex::Regex { implementation
184 impl<'a> Regex<&'a [u8]> for regex::bytes::Regex { implementation
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang-tidy/utils/
DMatchers.h90 llvm::Regex Regex; variable
105 NameMatcher(const llvm::StringRef Regex) in NameMatcher()
122 MatchMode determineMatchMode(llvm::StringRef Regex) { in determineMatchMode()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang-tidy/utils/
DMatchers.h90 llvm::Regex Regex; variable
105 NameMatcher(const llvm::StringRef Regex) in NameMatcher()
122 MatchMode determineMatchMode(llvm::StringRef Regex) { in determineMatchMode()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang-tidy/utils/
DMatchers.h90 llvm::Regex Regex; variable
105 NameMatcher(const llvm::StringRef Regex) in NameMatcher()
122 MatchMode determineMatchMode(llvm::StringRef Regex) { in determineMatchMode()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang-tidy/utils/
DMatchers.h90 llvm::Regex Regex; variable
105 NameMatcher(const llvm::StringRef Regex) in NameMatcher()
122 MatchMode determineMatchMode(llvm::StringRef Regex) { in determineMatchMode()
/aosp_15_r20/external/perfetto/src/trace_processor/util/
H A Dregex.h52 Regex(Regex&& other) { in Regex() function
91 explicit Regex(regex_t regex) : regex_(std::move(regex)) {} in Regex() function
/aosp_15_r20/external/llvm/tools/llvm-cov/
H A DCoverageFilters.h46 StringRef Regex; variable
49 NameRegexCoverageFilter(StringRef Regex) : Regex(Regex) {} in NameRegexCoverageFilter()
/aosp_15_r20/external/perfetto/src/trace_processor/db/column/
H A Dstring_storage.cc107 struct Regex { struct
108 bool operator()(StringPool::Id lhs, const regex::Regex& pattern) const { in operator ()()
112 const StringPool* pool_;
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-1.10.4/src/
H A Dbuilders.rs70 fn build_one_string(&self) -> Result<crate::Regex, Error> { in build_one_string()
87 fn build_one_bytes(&self) -> Result<crate::bytes::Regex, Error> { in build_one_bytes()
232 pub fn build(&self) -> Result<Regex, Error> { in build()
1392 pub fn build(&self) -> Result<Regex, Error> { in build()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/tests/hybrid/
H A Dsuite.rs195 re: &Regex, in run_test()
311 re: &Regex, in try_search_overlapping()
/aosp_15_r20/external/rust/android-crates-io/crates/which/src/
Dlib.rs184 regex: impl Borrow<Regex>, in which_re_in()
259 type Regex = regex::Regex; typedef
262 type Regex = (); typedef
/aosp_15_r20/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/functions/
H A Dutils.h379 struct Regex : public SqlFunction { struct
391 auto regex = regex::Regex::Create(pattern_str); in Run() argument
/aosp_15_r20/development/tools/cargo_embargo/src/cargo/
H A Dcargo_out.rs165 fn match1(regex: &Regex, s: &str) -> Option<String> { in match1()
169 fn match3(regex: &Regex, s: &str) -> Option<(String, String, String)> { in match3()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang-tidy/
DGlobList.h46 llvm::Regex Regex; member

12345678910>>...22