Home | History | Annotate | Download | only in bits

Lines Matching defs:syntax_option_type

72    * The @c syntax_option_type is implementation defined but it is valid to
76 * A valid value of type syntax_option_type shall have exactly one of the
80 typedef unsigned int syntax_option_type;
86 constexpr syntax_option_type icase = 1 << _S_icase;
93 constexpr syntax_option_type nosubs = 1 << _S_nosubs;
101 constexpr syntax_option_type optimize = 1 << _S_optimize;
107 constexpr syntax_option_type collate = 1 << _S_collate;
117 constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
126 constexpr syntax_option_type basic = 1 << _S_basic;
134 constexpr syntax_option_type extended = 1 << _S_extended;
139 * identical to syntax_option_type extended, except that C-style escape
144 constexpr syntax_option_type awk = 1 << _S_awk;
149 * identical to syntax_option_type basic, except that newlines are treated
152 constexpr syntax_option_type grep = 1 << _S_grep;
157 * IEEE Std 1003.1-2001. This option is identical to syntax_option_type
160 constexpr syntax_option_type egrep = 1 << _S_egrep;