Lines Matching defs:std

67 _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD)
169 { std::memset(_M_w, 0, _Nw * sizeof(_WordT)); }
237 std::fill(_M_w + 0, _M_w + __wshift, static_cast<_WordT>(0));
264 std::fill(_M_w + __limit + 1, _M_w + _Nw, static_cast<_WordT>(0));
614 * using namespace std;
749 * @throw std::out_of_range If @a pos is bigger the size of @a s.
750 * @throw std::invalid_argument If a character appears in the string
755 bitset(const std::basic_string<_CharT, _Traits, _Alloc>& __s,
763 std::basic_string<_CharT, _Traits, _Alloc>::npos);
771 * @throw std::out_of_range If @a pos is bigger the size of @a s.
772 * @throw std::invalid_argument If a character appears in the string
776 bitset(const std::basic_string<_CharT, _Traits, _Alloc>& __s,
909 * @throw std::out_of_range If @a pos is bigger the size of the %set.
932 * @throw std::out_of_range If @a pos is bigger the size of the %set.
958 * @throw std::out_of_range If @a pos is bigger the size of the %set.
1002 * @throw std::overflow_error If there are too many bits to be
1018 std::basic_string<_CharT, _Traits, _Alloc>
1021 std::basic_string<_CharT, _Traits, _Alloc> __result;
1029 std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
1031 { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
1034 std::basic_string<_CharT, std::char_traits<_CharT>,
1035 std::allocator<_CharT> >
1038 return to_string<_CharT, std::char_traits<_CharT>,
1039 std::allocator<_CharT> >();
1042 std::basic_string<char, std::char_traits<char>, std::allocator<char> >
1045 return to_string<char, std::char_traits<char>,
1046 std::allocator<char> >();
1052 _M_copy_from_string(const std::basic_string<_CharT,
1058 _M_copy_to_string(std::basic_string<_CharT, _Traits, _Alloc>&) const;
1085 * @throw std::out_of_range If @a pos is bigger the size of the %set.
1149 _M_copy_from_string(const std::basic_string<_CharT, _Traits,
1153 const size_t __nbits = std::min(_Nb, std::min(__n, __s.size() - __pos));
1173 _M_copy_to_string(std::basic_string<_CharT, _Traits, _Alloc>& __s) const
1229 std::basic_istream<_CharT, _Traits>&
1230 operator>>(std::basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x)
1233 std::basic_string<_CharT, _Traits> __tmp;
1236 std::ios_base::iostate __state = std::ios_base::goodbit;
1237 typename std::basic_istream<_CharT, _Traits>::sentry __sentry(__is);
1254 __state |= std::ios_base::eofbit;
1267 __state |= std::ios_base::failbit;
1274 { __is._M_setstate(std::ios_base::badbit); }
1278 __state |= std::ios_base::failbit;
1287 std::basic_ostream<_CharT, _Traits>&
1288 operator<<(std::basic_ostream<_CharT, _Traits>& __os,
1291 std::basic_string<_CharT, _Traits> __tmp;