Home
last modified time | relevance | path

Searched refs:RURE_FLAG_UNICODE (Results 1 – 4 of 4) sorted by relevance

/third_party/rust/crates/regex/regex-capi/
DREADME.md61 `RURE_FLAG_UNICODE` flag enabled, the regex `.` is guaranteed to match a
65 However, with the `RURE_FLAG_UNICODE` flag disabled, the regex `.` will match
68 This provides a useful invariant: wherever `RURE_FLAG_UNICODE` is set, the
74 Some good advice is to always enable the `RURE_FLAG_UNICODE` flag (which is
/third_party/rust/crates/regex/regex-capi/include/
Drure.h54 #define RURE_FLAG_UNICODE (1 << 5) macro
56 #define RURE_DEFAULT_FLAGS RURE_FLAG_UNICODE
/third_party/rust/crates/regex/regex-capi/src/
Drure.rs18 const RURE_FLAG_UNICODE: u32 = 1 << 5; constant
19 const RURE_DEFAULT_FLAGS: u32 = RURE_FLAG_UNICODE;
125 builder.unicode(flags & RURE_FLAG_UNICODE > 0);
511 builder.unicode(flags & RURE_FLAG_UNICODE > 0);
/third_party/rust/crates/regex/regex-capi/examples/
Diter.c56 RURE_FLAG_UNICODE | RURE_FLAG_CASEI, NULL, err); in main()