Lines Matching refs:__flags
3001 regex_constants::match_flag_type __flags) const;
3007 regex_constants::match_flag_type __flags, bool) const;
3012 regex_constants::match_flag_type __flags, bool) const;
3017 regex_constants::match_flag_type __flags, bool) const;
3022 regex_constants::match_flag_type __flags, bool) const;
3059 regex_constants::match_flag_type __flags);
3067 regex_constants::match_flag_type __flags);
3076 regex_constants::match_flag_type __flags);
5510 regex_constants::match_flag_type __flags = regex_constants::format_default) const;
5515 regex_constants::match_flag_type __flags = regex_constants::format_default) const
5516 {return format(__output_iter, __fmt.data(), __fmt.data() + __fmt.size(), __flags);}
5521 regex_constants::match_flag_type __flags = regex_constants::format_default) const
5525 __flags);
5531 regex_constants::match_flag_type __flags = regex_constants::format_default) const
5535 __fmt + char_traits<char_type>::length(__fmt), __flags);
5630 regex_constants::match_flag_type __flags) const
5633 if (__flags & regex_constants::format_sed)
5774 regex_constants::match_flag_type __flags, bool __at_first) const
5793 __states.back().__flags_ = __flags;
5809 if ((__flags & regex_constants::match_not_null) &&
5815 if ((__flags & regex_constants::__full_match) &&
5858 regex_constants::match_flag_type __flags, bool __at_first) const
5873 __states.back().__flags_ = __flags;
5890 if ((__flags & regex_constants::match_not_null) &&
5896 if ((__flags & regex_constants::__full_match) &&
5952 regex_constants::match_flag_type __flags, bool __at_first) const
5974 __states.back().__flags_ = __flags;
5991 if ((__flags & regex_constants::match_not_null) &&
5997 if ((__flags & regex_constants::__full_match) &&
6053 regex_constants::match_flag_type __flags, bool __at_first) const
6056 return __match_at_start_ecma(__first, __last, __m, __flags, __at_first);
6058 return __match_at_start_posix_nosubs(__first, __last, __m, __flags, __at_first);
6059 return __match_at_start_posix_subs(__first, __last, __m, __flags, __at_first);
6068 regex_constants::match_flag_type __flags) const
6070 if (__flags & regex_constants::match_prev_avail)
6071 __flags &= ~(regex_constants::match_not_bol | regex_constants::match_not_bow);
6074 __flags & regex_constants::__no_update_pos);
6075 if (__match_at_start(__first, __last, __m, __flags,
6076 !(__flags & regex_constants::__no_update_pos)))
6084 if (__first != __last && !(__flags & regex_constants::match_continuous))
6086 __flags |= regex_constants::match_prev_avail;
6090 if (__match_at_start(__first, __last, __m, __flags, false))
6111 regex_constants::match_flag_type __flags = regex_constants::match_default)
6113 int __offset = (__flags & regex_constants::match_prev_avail) ? 1 : 0;
6116 bool __r = __e.__search(__s.data() + __offset, __s.data() + __s.size(), __mc, __flags);
6117 __m.__assign(__first, __last, __mc, __flags & regex_constants::__no_update_pos);
6128 regex_constants::match_flag_type __flags = regex_constants::match_default)
6131 bool __r = __e.__search(__first.base(), __last.base(), __mc, __flags);
6132 __m.__assign(__first, __last, __mc, __flags & regex_constants::__no_update_pos);
6142 regex_constants::match_flag_type __flags = regex_constants::match_default)
6144 return __e.__search(__first, __last, __m, __flags);
6152 regex_constants::match_flag_type __flags = regex_constants::match_default)
6156 return __e.__search(__s.data(), __s.data() + __s.size(), __mc, __flags);
6164 regex_constants::match_flag_type __flags = regex_constants::match_default)
6167 return __e.__search(__first, __last, __mc, __flags);
6175 regex_constants::match_flag_type __flags = regex_constants::match_default)
6177 return __e.__search(__str, __str + _Traits::length(__str), __m, __flags);
6184 regex_constants::match_flag_type __flags = regex_constants::match_default)
6187 return _VSTD::regex_search(__str, __m, __e, __flags);
6195 regex_constants::match_flag_type __flags = regex_constants::match_default)
6198 return __e.__search(__s.data(), __s.data() + __s.size(), __mc, __flags);
6207 regex_constants::match_flag_type __flags = regex_constants::match_default)
6210 bool __r = __e.__search(__s.data(), __s.data() + __s.size(), __mc, __flags);
6211 __m.__assign(__s.begin(), __s.end(), __mc, __flags & regex_constants::__no_update_pos);
6221 regex_constants::match_flag_type __flags = regex_constants::match_default) = delete;
6231 regex_constants::match_flag_type __flags = regex_constants::match_default)
6235 __flags | regex_constants::match_continuous |
6251 regex_constants::match_flag_type __flags = regex_constants::match_default)
6254 return _VSTD::regex_match(__first, __last, __m, __e, __flags);
6262 regex_constants::match_flag_type __flags = regex_constants::match_default)
6264 return _VSTD::regex_match(__str, __str + _Traits::length(__str), __m, __e, __flags);
6273 regex_constants::match_flag_type __flags = regex_constants::match_default)
6275 return _VSTD::regex_match(__s.begin(), __s.end(), __m, __e, __flags);
6285 regex_constants::match_flag_type __flags = regex_constants::match_default) = delete;
6292 regex_constants::match_flag_type __flags = regex_constants::match_default)
6294 return _VSTD::regex_match(__str, __str + _Traits::length(__str), __e, __flags);
6302 regex_constants::match_flag_type __flags = regex_constants::match_default)
6304 return _VSTD::regex_match(__s.begin(), __s.end(), __e, __flags);
6744 regex_constants::match_flag_type __flags = regex_constants::match_default)
6747 _Iter __i(__first, __last, __e, __flags);
6751 if (!(__flags & regex_constants::format_no_copy))
6759 if (!(__flags & regex_constants::format_no_copy))
6761 __output_iter = __i->format(__output_iter, __fmt, __fmt + __len, __flags);
6763 if (__flags & regex_constants::format_first_only)
6766 if (!(__flags & regex_constants::format_no_copy))
6780 regex_constants::match_flag_type __flags = regex_constants::match_default)
6782 return _VSTD::regex_replace(__output_iter, __first, __last, __e, __fmt.c_str(), __flags);
6792 regex_constants::match_flag_type __flags = regex_constants::match_default)
6796 __fmt.c_str(), __flags);
6805 regex_constants::match_flag_type __flags = regex_constants::match_default)
6809 __fmt, __flags);
6819 regex_constants::match_flag_type __flags = regex_constants::match_default)
6824 __fmt.c_str(), __flags);
6834 regex_constants::match_flag_type __flags = regex_constants::match_default)
6839 __fmt, __flags);