Home
last modified time | relevance | path

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

/third_party/rust/crates/regex/bench/src/ffi/
Donig.rs3 pub struct Regex(onig::Regex); struct
5 unsafe impl Send for Regex {} implementation
7 impl Regex { impl
Dpcre1.rs19 pub struct Regex { struct
24 unsafe impl Send for Regex {} argument
26 impl Drop for Regex { implementation
40 impl Regex { implementation
41 pub fn new(pattern: &str) -> Result<Regex, Error> { in new()
Dre2.rs8 pub struct Regex { struct
12 unsafe impl Send for Regex {} argument
14 impl Drop for Regex { implementation
25 impl Regex { impl
26 pub fn new(pattern: &str) -> Result<Regex, Error> { in new()
Dpcre2.rs9 pub struct Regex { struct
15 unsafe impl Send for Regex {} argument
17 impl Drop for Regex { implementation
31 impl Regex { impl
32 pub fn new(pattern: &str) -> Result<Regex, Error> { in new()
Dtcl.rs61 pub struct Regex { struct
66 unsafe impl Send for Regex {} argument
71 impl Regex { implementation
72 pub fn new(pattern: &str) -> Result<Regex, Error> { in new()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
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
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
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
DTrigramIndex.cpp32 void TrigramIndex::insert(std::string Regex) { in insert()
/third_party/rust/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 { impl
[all …]
Dpattern.rs13 impl<'r, 't> Pattern<'t> for &'r Regex { implementation
Dexec.rs1277 pub fn into_regex(self) -> re_unicode::Regex { in into_regex()
1287 pub fn into_byte_regex(self) -> re_bytes::Regex { in into_byte_regex()
/third_party/rust/crates/regex/regex-capi/src/
Drure.rs21 pub struct Regex { struct
22 re: bytes::Regex, argument
31 // The `RegexSet` is not exposed with option support or matching at an argument
57 impl Deref for Regex { implementation
59 fn deref(&self) -> &bytes::Regex { in deref()
Derror.rs19 Regex(regex::Error), enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DSpecialCaseList.h64 class Regex; variable
/third_party/benchmark/src/
Dre.h63 Regex() : init_(false) {} in Regex() function
/third_party/rust/crates/which-rs/src/
Dlib.rs184 regex: impl Borrow<Regex>, in which_re_in()
259 type Regex = regex::Regex; typedef
262 type Regex = (); typedef
Dfinder.rs91 binary_regex: impl Borrow<Regex>, in find_re()
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource3.ts17 Regex, enumerator
/third_party/protobuf/python/
Dmox.py904 class Regex(Comparator): class