Lines Matching refs:__str
689 explicit bitset(const _CharT* __str,
693 explicit bitset(const basic_string<_CharT,_Traits,_Allocator>& __str,
773 bitset<_Size>::bitset(const _CharT* __str,
777 size_t __rlen = _VSTD::min(__n, char_traits<_CharT>::length(__str));
779 if (__str[__i] != __zero && __str[__i] != __one)
786 _CharT __c = __str[_Mp - 1 - __i];
794 bitset<_Size>::bitset(const basic_string<_CharT,_Traits,_Allocator>& __str,
799 if (__pos > __str.size())
802 size_t __rlen = _VSTD::min(__n, __str.size() - __pos);
804 if (!_Traits::eq(__str[__i], __zero) && !_Traits::eq(__str[__i], __one))
811 _CharT __c = __str[__pos + _Mp - 1 - __i];