Lines Matching refs:_NOEXCEPT
171 _LIBCPP_CONSTEXPR __bitset() _NOEXCEPT;
172 explicit _LIBCPP_CONSTEXPR __bitset(unsigned long long __v) _NOEXCEPT;
174 _LIBCPP_INLINE_VISIBILITY reference __make_ref(size_t __pos) _NOEXCEPT
176 …LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR const_reference __make_ref(size_t __pos) const _NOEXCEPT
178 _LIBCPP_INLINE_VISIBILITY iterator __make_iter(size_t __pos) _NOEXCEPT
180 _LIBCPP_INLINE_VISIBILITY const_iterator __make_iter(size_t __pos) const _NOEXCEPT
183 void operator&=(const __bitset& __v) _NOEXCEPT;
184 void operator|=(const __bitset& __v) _NOEXCEPT;
185 void operator^=(const __bitset& __v) _NOEXCEPT;
187 void flip() _NOEXCEPT;
193 bool all() const _NOEXCEPT;
194 bool any() const _NOEXCEPT;
195 size_t __hash_code() const _NOEXCEPT;
198 void __init(unsigned long long __v, false_type) _NOEXCEPT;
199 void __init(unsigned long long __v, true_type) _NOEXCEPT;
212 __bitset<_N_words, _Size>::__bitset() _NOEXCEPT
226 __bitset<_N_words, _Size>::__init(unsigned long long __v, false_type) _NOEXCEPT
239 __bitset<_N_words, _Size>::__init(unsigned long long __v, true_type) _NOEXCEPT
250 __bitset<_N_words, _Size>::__bitset(unsigned long long __v) _NOEXCEPT
269 __bitset<_N_words, _Size>::operator&=(const __bitset& __v) _NOEXCEPT
278 __bitset<_N_words, _Size>::operator|=(const __bitset& __v) _NOEXCEPT
287 __bitset<_N_words, _Size>::operator^=(const __bitset& __v) _NOEXCEPT
295 __bitset<_N_words, _Size>::flip() _NOEXCEPT
378 __bitset<_N_words, _Size>::all() const _NOEXCEPT
398 __bitset<_N_words, _Size>::any() const _NOEXCEPT
419 __bitset<_N_words, _Size>::__hash_code() const _NOEXCEPT
453 _LIBCPP_CONSTEXPR __bitset() _NOEXCEPT;
454 explicit _LIBCPP_CONSTEXPR __bitset(unsigned long long __v) _NOEXCEPT;
456 _LIBCPP_INLINE_VISIBILITY reference __make_ref(size_t __pos) _NOEXCEPT
458 …LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR const_reference __make_ref(size_t __pos) const _NOEXCEPT
460 _LIBCPP_INLINE_VISIBILITY iterator __make_iter(size_t __pos) _NOEXCEPT
462 _LIBCPP_INLINE_VISIBILITY const_iterator __make_iter(size_t __pos) const _NOEXCEPT
465 void operator&=(const __bitset& __v) _NOEXCEPT;
466 void operator|=(const __bitset& __v) _NOEXCEPT;
467 void operator^=(const __bitset& __v) _NOEXCEPT;
469 void flip() _NOEXCEPT;
474 bool all() const _NOEXCEPT;
475 bool any() const _NOEXCEPT;
477 size_t __hash_code() const _NOEXCEPT;
483 __bitset<1, _Size>::__bitset() _NOEXCEPT
491 __bitset<1, _Size>::__bitset(unsigned long long __v) _NOEXCEPT
499 __bitset<1, _Size>::operator&=(const __bitset& __v) _NOEXCEPT
507 __bitset<1, _Size>::operator|=(const __bitset& __v) _NOEXCEPT
515 __bitset<1, _Size>::operator^=(const __bitset& __v) _NOEXCEPT
523 __bitset<1, _Size>::flip() _NOEXCEPT
549 __bitset<1, _Size>::all() const _NOEXCEPT
558 __bitset<1, _Size>::any() const _NOEXCEPT
567 __bitset<1, _Size>::__hash_code() const _NOEXCEPT
596 _LIBCPP_CONSTEXPR __bitset() _NOEXCEPT;
597 explicit _LIBCPP_CONSTEXPR __bitset(unsigned long long) _NOEXCEPT;
599 _LIBCPP_INLINE_VISIBILITY reference __make_ref(size_t) _NOEXCEPT
601 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR const_reference __make_ref(size_t) const _NOEXCEPT
603 _LIBCPP_INLINE_VISIBILITY iterator __make_iter(size_t) _NOEXCEPT
605 _LIBCPP_INLINE_VISIBILITY const_iterator __make_iter(size_t) const _NOEXCEPT
608 _LIBCPP_INLINE_VISIBILITY void operator&=(const __bitset&) _NOEXCEPT {}
609 _LIBCPP_INLINE_VISIBILITY void operator|=(const __bitset&) _NOEXCEPT {}
610 _LIBCPP_INLINE_VISIBILITY void operator^=(const __bitset&) _NOEXCEPT {}
612 _LIBCPP_INLINE_VISIBILITY void flip() _NOEXCEPT {}
617 _LIBCPP_INLINE_VISIBILITY bool all() const _NOEXCEPT {return true;}
618 _LIBCPP_INLINE_VISIBILITY bool any() const _NOEXCEPT {return false;}
620 _LIBCPP_INLINE_VISIBILITY size_t __hash_code() const _NOEXCEPT {return 0;}
625 __bitset<0, 0>::__bitset() _NOEXCEPT
631 __bitset<0, 0>::__bitset(unsigned long long) _NOEXCEPT
651 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR bitset() _NOEXCEPT {}
653 bitset(unsigned long long __v) _NOEXCEPT : base(__v) {}
666 bitset& operator&=(const bitset& __rhs) _NOEXCEPT;
667 bitset& operator|=(const bitset& __rhs) _NOEXCEPT;
668 bitset& operator^=(const bitset& __rhs) _NOEXCEPT;
669 bitset& operator<<=(size_t __pos) _NOEXCEPT;
670 bitset& operator>>=(size_t __pos) _NOEXCEPT;
671 bitset& set() _NOEXCEPT;
673 bitset& reset() _NOEXCEPT;
675 bitset operator~() const _NOEXCEPT;
676 bitset& flip() _NOEXCEPT;
696 size_t count() const _NOEXCEPT;
697 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR size_t size() const _NOEXCEPT {return _Size;}
698 bool operator==(const bitset& __rhs) const _NOEXCEPT;
699 bool operator!=(const bitset& __rhs) const _NOEXCEPT;
701 bool all() const _NOEXCEPT;
702 bool any() const _NOEXCEPT;
703 _LIBCPP_INLINE_VISIBILITY bool none() const _NOEXCEPT {return !any();}
704 bitset operator<<(size_t __pos) const _NOEXCEPT;
705 bitset operator>>(size_t __pos) const _NOEXCEPT;
710 size_t __hash_code() const _NOEXCEPT {return base::__hash_code();}
779 bitset<_Size>::operator&=(const bitset& __rhs) _NOEXCEPT
788 bitset<_Size>::operator|=(const bitset& __rhs) _NOEXCEPT
797 bitset<_Size>::operator^=(const bitset& __rhs) _NOEXCEPT
805 bitset<_Size>::operator<<=(size_t __pos) _NOEXCEPT
815 bitset<_Size>::operator>>=(size_t __pos) _NOEXCEPT
826 bitset<_Size>::set() _NOEXCEPT
849 bitset<_Size>::reset() _NOEXCEPT
872 bitset<_Size>::operator~() const _NOEXCEPT
882 bitset<_Size>::flip() _NOEXCEPT
962 bitset<_Size>::count() const _NOEXCEPT
970 bitset<_Size>::operator==(const bitset& __rhs) const _NOEXCEPT
978 bitset<_Size>::operator!=(const bitset& __rhs) const _NOEXCEPT
999 bitset<_Size>::all() const _NOEXCEPT
1007 bitset<_Size>::any() const _NOEXCEPT
1015 bitset<_Size>::operator<<(size_t __pos) const _NOEXCEPT
1025 bitset<_Size>::operator>>(size_t __pos) const _NOEXCEPT
1035 operator&(const bitset<_Size>& __x, const bitset<_Size>& __y) _NOEXCEPT
1045 operator|(const bitset<_Size>& __x, const bitset<_Size>& __y) _NOEXCEPT
1055 operator^(const bitset<_Size>& __x, const bitset<_Size>& __y) _NOEXCEPT
1067 size_t operator()(const bitset<_Size>& __bs) const _NOEXCEPT