Lines Matching refs:__str
655 explicit bitset(const _CharT* __str,
659 explicit bitset(const basic_string<_CharT,_Traits,_Allocator>& __str,
717 bitset<_Size>::bitset(const _CharT* __str,
721 size_t __rlen = _VSTD::min(__n, char_traits<_CharT>::length(__str));
723 if (__str[__i] != __zero && __str[__i] != __one)
733 _CharT __c = __str[_Mp - 1 - __i];
744 bitset<_Size>::bitset(const basic_string<_CharT,_Traits,_Allocator>& __str,
749 if (__pos > __str.size())
755 size_t __rlen = _VSTD::min(__n, __str.size() - __pos);
757 if (!_Traits::eq(__str[__i], __zero) && !_Traits::eq(__str[__i], __one))
767 _CharT __c = __str[__pos + _Mp - 1 - __i];