Searched refs:RURE_FLAG_UNICODE (Results 1 – 4 of 4) sorted by relevance
61 `RURE_FLAG_UNICODE` flag enabled, the regex `.` is guaranteed to match a65 However, with the `RURE_FLAG_UNICODE` flag disabled, the regex `.` will match68 This provides a useful invariant: wherever `RURE_FLAG_UNICODE` is set, the74 Some good advice is to always enable the `RURE_FLAG_UNICODE` flag (which is
54 #define RURE_FLAG_UNICODE (1 << 5) macro56 #define RURE_DEFAULT_FLAGS RURE_FLAG_UNICODE
18 const RURE_FLAG_UNICODE: u32 = 1 << 5; constant19 const RURE_DEFAULT_FLAGS: u32 = RURE_FLAG_UNICODE;125 builder.unicode(flags & RURE_FLAG_UNICODE > 0);511 builder.unicode(flags & RURE_FLAG_UNICODE > 0);
56 RURE_FLAG_UNICODE | RURE_FLAG_CASEI, NULL, err); in main()