Lines Matching refs:__flags
3003 regex_constants::match_flag_type __flags) const;
3009 regex_constants::match_flag_type __flags, bool) const;
3014 regex_constants::match_flag_type __flags, bool) const;
3019 regex_constants::match_flag_type __flags, bool) const;
3024 regex_constants::match_flag_type __flags, bool) const;
3061 regex_constants::match_flag_type __flags);
3069 regex_constants::match_flag_type __flags);
3078 regex_constants::match_flag_type __flags);
5512 regex_constants::match_flag_type __flags = regex_constants::format_default) const;
5517 regex_constants::match_flag_type __flags = regex_constants::format_default) const
5518 {return format(__output_iter, __fmt.data(), __fmt.data() + __fmt.size(), __flags);}
5523 regex_constants::match_flag_type __flags = regex_constants::format_default) const
5527 __flags);
5533 regex_constants::match_flag_type __flags = regex_constants::format_default) const
5537 __fmt + char_traits<char_type>::length(__fmt), __flags);
5632 regex_constants::match_flag_type __flags) const
5635 if (__flags & regex_constants::format_sed)
5776 regex_constants::match_flag_type __flags, bool __at_first) const
5795 __states.back().__flags_ = __flags;
5811 if ((__flags & regex_constants::match_not_null) &&
5817 if ((__flags & regex_constants::__full_match) &&
5860 regex_constants::match_flag_type __flags, bool __at_first) const
5875 __states.back().__flags_ = __flags;
5892 if ((__flags & regex_constants::match_not_null) &&
5898 if ((__flags & regex_constants::__full_match) &&
5954 regex_constants::match_flag_type __flags, bool __at_first) const
5976 __states.back().__flags_ = __flags;
5993 if ((__flags & regex_constants::match_not_null) &&
5999 if ((__flags & regex_constants::__full_match) &&
6055 regex_constants::match_flag_type __flags, bool __at_first) const
6058 return __match_at_start_ecma(__first, __last, __m, __flags, __at_first);
6060 return __match_at_start_posix_nosubs(__first, __last, __m, __flags, __at_first);
6061 return __match_at_start_posix_subs(__first, __last, __m, __flags, __at_first);
6070 regex_constants::match_flag_type __flags) const
6072 if (__flags & regex_constants::match_prev_avail)
6073 __flags &= ~(regex_constants::match_not_bol | regex_constants::match_not_bow);
6076 __flags & regex_constants::__no_update_pos);
6077 if (__match_at_start(__first, __last, __m, __flags,
6078 !(__flags & regex_constants::__no_update_pos)))
6086 if (__first != __last && !(__flags & regex_constants::match_continuous))
6088 __flags |= regex_constants::match_prev_avail;
6092 if (__match_at_start(__first, __last, __m, __flags, false))
6113 regex_constants::match_flag_type __flags = regex_constants::match_default)
6115 int __offset = (__flags & regex_constants::match_prev_avail) ? 1 : 0;
6118 bool __r = __e.__search(__s.data() + __offset, __s.data() + __s.size(), __mc, __flags);
6119 __m.__assign(__first, __last, __mc, __flags & regex_constants::__no_update_pos);
6130 regex_constants::match_flag_type __flags = regex_constants::match_default)
6133 bool __r = __e.__search(__first.base(), __last.base(), __mc, __flags);
6134 __m.__assign(__first, __last, __mc, __flags & regex_constants::__no_update_pos);
6144 regex_constants::match_flag_type __flags = regex_constants::match_default)
6146 return __e.__search(__first, __last, __m, __flags);
6154 regex_constants::match_flag_type __flags = regex_constants::match_default)
6158 return __e.__search(__s.data(), __s.data() + __s.size(), __mc, __flags);
6166 regex_constants::match_flag_type __flags = regex_constants::match_default)
6169 return __e.__search(__first, __last, __mc, __flags);
6177 regex_constants::match_flag_type __flags = regex_constants::match_default)
6179 return __e.__search(__str, __str + _Traits::length(__str), __m, __flags);
6186 regex_constants::match_flag_type __flags = regex_constants::match_default)
6189 return _VSTD::regex_search(__str, __m, __e, __flags);
6197 regex_constants::match_flag_type __flags = regex_constants::match_default)
6200 return __e.__search(__s.data(), __s.data() + __s.size(), __mc, __flags);
6209 regex_constants::match_flag_type __flags = regex_constants::match_default)
6212 bool __r = __e.__search(__s.data(), __s.data() + __s.size(), __mc, __flags);
6213 __m.__assign(__s.begin(), __s.end(), __mc, __flags & regex_constants::__no_update_pos);
6223 regex_constants::match_flag_type __flags = regex_constants::match_default) = delete;
6233 regex_constants::match_flag_type __flags = regex_constants::match_default)
6237 __flags | regex_constants::match_continuous |
6253 regex_constants::match_flag_type __flags = regex_constants::match_default)
6256 return _VSTD::regex_match(__first, __last, __m, __e, __flags);
6264 regex_constants::match_flag_type __flags = regex_constants::match_default)
6266 return _VSTD::regex_match(__str, __str + _Traits::length(__str), __m, __e, __flags);
6275 regex_constants::match_flag_type __flags = regex_constants::match_default)
6277 return _VSTD::regex_match(__s.begin(), __s.end(), __m, __e, __flags);
6287 regex_constants::match_flag_type __flags = regex_constants::match_default) = delete;
6294 regex_constants::match_flag_type __flags = regex_constants::match_default)
6296 return _VSTD::regex_match(__str, __str + _Traits::length(__str), __e, __flags);
6304 regex_constants::match_flag_type __flags = regex_constants::match_default)
6306 return _VSTD::regex_match(__s.begin(), __s.end(), __e, __flags);
6746 regex_constants::match_flag_type __flags = regex_constants::match_default)
6749 _Iter __i(__first, __last, __e, __flags);
6753 if (!(__flags & regex_constants::format_no_copy))
6761 if (!(__flags & regex_constants::format_no_copy))
6763 __output_iter = __i->format(__output_iter, __fmt, __fmt + __len, __flags);
6765 if (__flags & regex_constants::format_first_only)
6768 if (!(__flags & regex_constants::format_no_copy))
6782 regex_constants::match_flag_type __flags = regex_constants::match_default)
6784 return _VSTD::regex_replace(__output_iter, __first, __last, __e, __fmt.c_str(), __flags);
6794 regex_constants::match_flag_type __flags = regex_constants::match_default)
6798 __fmt.c_str(), __flags);
6807 regex_constants::match_flag_type __flags = regex_constants::match_default)
6811 __fmt, __flags);
6821 regex_constants::match_flag_type __flags = regex_constants::match_default)
6826 __fmt.c_str(), __flags);
6836 regex_constants::match_flag_type __flags = regex_constants::match_default)
6841 __fmt, __flags);