Home
last modified time | relevance | path

Searched refs:rure (Results 1 - 4 of 4) sorted by relevance

/third_party/rust/crates/regex/regex-capi/include/
H A Drure.h13 * rure is the type of a compiled regular expression.
15 * An rure can be safely used from multiple threads simultaneously.
17 typedef struct rure rure; typedef
22 * A rure can be safely used from multiple threads simultaneously.
78 * An rure_captures value may outlive its corresponding rure and can be freed
89 * An rure_iter value may not outlive its corresponding rure and should be freed
90 * before its corresponding rure is freed.
98 * in this particular rure.
100 * An rure_iter_capture_names value may not outlive its corresponding rure,
[all...]
/third_party/rust/crates/regex/regex-capi/ctest/
H A Dtest.c7 #include "rure.h"
17 rure *re = rure_compile_must("\\p{So}$"); in test_is_match()
35 rure *re = rure_compile_must("a+"); in test_shortest_match()
64 rure *re = rure_compile_must("\\p{So}$"); in test_find()
93 rure *re = rure_compile_must(".(.*(?P<snowman>\\p{So}))$"); in test_captures()
155 rure *re = rure_compile_must("\\w+(\\w)"); in test_iter()
229 rure *re = rure_compile_must( in test_iter_capture_names()
278 rure *re = rure_compile((const uint8_t *)pattern, strlen(pattern), in test_flags()
295 rure *re = rure_compile((const uint8_t *)"(", 1, 0, NULL, err); in test_compile_error()
324 rure *r in test_compile_error_size_limit()
[all...]
/third_party/rust/crates/regex/regex-capi/src/
H A Dlib.rs4 mod rure; modules
7 pub use crate::rure::*;
/third_party/rust/crates/regex/regex-capi/examples/
H A Diter.c15 #include "rure.h"
55 rure *re = rure_compile((const uint8_t *)pattern, pattern_len, in main()

Completed in 2 milliseconds