Home | History | Annotate | Download | only in bits

Lines Matching defs:syntax_option_type

65    * The @c syntax_option_type is implementation defined but it is valid to
69 * A valid value of type syntax_option_type shall have exactly one of the
73 typedef unsigned int syntax_option_type;
79 static constexpr syntax_option_type icase = 1 << _S_icase;
86 static constexpr syntax_option_type nosubs = 1 << _S_nosubs;
94 static constexpr syntax_option_type optimize = 1 << _S_optimize;
100 static constexpr syntax_option_type collate = 1 << _S_collate;
110 static constexpr syntax_option_type ECMAScript = 1 << _S_ECMAScript;
119 static constexpr syntax_option_type basic = 1 << _S_basic;
127 static constexpr syntax_option_type extended = 1 << _S_extended;
132 * identical to syntax_option_type extended, except that C-style escape
137 static constexpr syntax_option_type awk = 1 << _S_awk;
142 * identical to syntax_option_type basic, except that newlines are treated
145 static constexpr syntax_option_type grep = 1 << _S_grep;
150 * IEEE Std 1003.1-2001. This option is identical to syntax_option_type
153 static constexpr syntax_option_type egrep = 1 << _S_egrep;