Lines Matching refs:optgroup_flags_t
269 typedef enum optgroup_flag optgroup_flags_t; typedef
271 static inline optgroup_flags_t
272 operator| (optgroup_flags_t lhs, optgroup_flags_t rhs)
274 return (optgroup_flags_t)((int)lhs | (int)rhs);
277 static inline optgroup_flags_t &
278 operator|= (optgroup_flags_t &lhs, optgroup_flags_t rhs)
280 lhs = (optgroup_flags_t)((int)lhs | (int)rhs);
308 optgroup_flags_t optgroup_flags;
507 extern const kv_pair<optgroup_flags_t> optgroup_options[];
671 dump_kind dkind, optgroup_flags_t optgroup_flags,
735 opt_info_enable_passes (optgroup_flags_t optgroup_flags, dump_flags_t flags,
750 optgroup_flags_t m_optgroup_flags;