Lines Matching refs:__size
220 basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {}
230 : __data(__s), __size(__len)
239 : __data(__s), __size(_Traits::length(__s)) {}
252 const_iterator cend() const _NOEXCEPT { return __data + __size; }
268 size_type size() const _NOEXCEPT { return __size; }
271 size_type length() const _NOEXCEPT { return __size; }
277 bool empty() const _NOEXCEPT { return __size == 0; }
300 return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1];
312 __size -= __n;
319 __size -= __n;
329 size_type __sz = __size;
330 __size = __other.__size;
331 __other.__size = __sz;
606 size_type __size;