Home | History | Annotate | Download | only in include

Lines Matching full:__size

204 	basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {}
214 : __data(__s), __size(__len)
223 : __data(__s), __size(_Traits::length(__s)) {}
236 const_iterator cend() const _NOEXCEPT { return __data + __size; }
252 size_type size() const _NOEXCEPT { return __size; }
255 size_type length() const _NOEXCEPT { return __size; }
261 empty() const _NOEXCEPT { return __size == 0; }
284 return _LIBCPP_ASSERT(!empty(), "string_view::back(): string is empty"), __data[__size-1];
295 __size = 0;
303 __size -= __n;
310 __size -= __n;
320 size_type __sz = __size;
321 __size = __other.__size;
322 __other.__size = __sz;
571 size_type __size;