| /freebsd/contrib/llvm-project/libcxx/include/__format/ |
| H A D | unicode.h | 130 : __first_(__first), __last_(__last) {} in __code_point_view() 132 _LIBCPP_HIDE_FROM_ABI constexpr bool __at_end() const noexcept { return __first_ == __last_; } in __at_end() 158 _LIBCPP_ASSERT_INTERNAL(__first_ != __last_, "can't move beyond the end of input"); in __consume() 168 if (__last_ - __first_ < 2 || !__unicode::__is_continuation(__first_ + 1, 1)) [[unlikely]] in __consume() 183 if (__last_ - __first_ < 3 || !__unicode::__is_continuation(__first_ + 1, 2)) [[unlikely]] in __consume() 204 if (__last_ - __first_ < 4 || !__unicode::__is_continuation(__first_ + 1, 3)) [[unlikely]] in __consume() 235 _Iterator __last_; variable 258 : __first_(__first), __last_(__last) {} in __code_point_view() 261 _LIBCPP_HIDE_FROM_ABI constexpr bool __at_end() const noexcept { return __first_ == __last_; } in __at_end() 264 _LIBCPP_ASSERT_INTERNAL(__first_ != __last_, "can't move beyond the end of input"); in __consume() [all …]
|
| H A D | parser_std_format_spec.h | 1012 _Iterator __last_; 1039 while (__result.__last_ != __last && __result.__width_ <= __maximum) { 1052 __result.__last_ = __cluster.__last_;
|
| H A D | formatter_output.h | 305 __str = basic_string_view<_CharT>{__str.begin(), __result.__last_}; in __truncate()
|
| /freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | move_sentinel.h | 34 _LIBCPP_HIDE_FROM_ABI constexpr explicit move_sentinel(_Sent __s) : __last_(std::move(__s)) {} in move_sentinel() 38 …_LIBCPP_HIDE_FROM_ABI constexpr move_sentinel(const move_sentinel<_S2>& __s) : __last_(__s.base())… in move_sentinel() 43 __last_ = __s.base(); 47 _LIBCPP_HIDE_FROM_ABI constexpr _Sent base() const { return __last_; } in base() 50 _Sent __last_ = _Sent();
|
| /freebsd/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | default_searcher.h | 34 : __first_(__f), __last_(__l), __pred_(__p) {} in __first_() 40 return std::__search_impl(__f, __l, __first_, __last_, __pred_, __proj, __proj); in operator() 45 _ForwardIterator __last_; variable
|
| H A D | boyer_moore_searcher.h | 108 __last_(__last), in __first_() 120 __build_suffix_table(__first_, __last_, __pred_); in __first_() 131 if (__first_ == __last_) in operator() 141 _RandomAccessIterator1 __last_; variable 239 __last_(__last), in __first_() 262 if (__first_ == __last_) in operator() 273 _RandomAccessIterator1 __last_; variable
|
| /freebsd/contrib/llvm-project/libcxx/src/ |
| H A D | regex.cpp | 357 if (__s.__current_ != __s.__last_) { in __exec() 378 if (__s.__current_ != __s.__last_) { in __exec()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__memory/ |
| H A D | uninitialized_algorithms.h | 183 : __alloc_(__alloc), __first_(__first), __last_(__last) {} in _AllocatorDestroyRangeReverse() 186 …std::__allocator_destroy(__alloc_, std::reverse_iterator<_Iter>(__last_), std::reverse_iterator<_I… in operator() 192 _Iter& __last_; variable
|
| /freebsd/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | uninitialized_algorithms.h | 520 : __alloc_(__alloc), __first_(__first), __last_(__last) {} in _AllocatorDestroyRangeReverse() 523 …std::__allocator_destroy(__alloc_, std::reverse_iterator<_Iter>(__last_), std::reverse_iterator<_I… in operator() 529 _Iter& __last_; variable
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | iomanip | 459 const _CharT* __last_; 464 : __first_(__f), __last_(__l), __delim_(__d), __escape_(__e) {} 469 return std::__quoted_output(__os, __p.__first_, __p.__last_, __p.__delim_, __p.__escape_);
|
| H A D | regex | 1314 const _CharT* __last_; 1325 __last_(nullptr), 1519 __s.__sub_matches_[__i].first = __s.__last_; 1520 __s.__sub_matches_[__i].second = __s.__last_; 1672 …if (__s.__last_ - __s.__current_ >= __len && std::equal(__sm.first, __sm.second, __s.__current_)) { 1709 if (__s.__last_ - __s.__current_ >= __len) { 1751 if (__s.__last_ - __s.__current_ >= __len) { 1791 if (__s.__first_ != __s.__last_) { 1792 if (__s.__current_ == __s.__last_) { 1874 if (__s.__current_ == __s.__last_ && !(__s.__flags_ & regex_constants::match_not_eol)) { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | iomanip | 470 const _CharT* __last_; 475 : __first_(__f), __last_(__l), __delim_(__d), __escape_(__e) {} 480 return std::__quoted_output(__os, __p.__first_, __p.__last_, __p.__delim_, __p.__escape_);
|
| H A D | regex | 1334 const _CharT* __last_; 1345 __last_(nullptr), 1539 __s.__sub_matches_[__i].first = __s.__last_; 1540 __s.__sub_matches_[__i].second = __s.__last_; 1692 …if (__s.__last_ - __s.__current_ >= __len && std::equal(__sm.first, __sm.second, __s.__current_)) { 1729 if (__s.__last_ - __s.__current_ >= __len) { 1771 if (__s.__last_ - __s.__current_ >= __len) { 1811 if (__s.__first_ != __s.__last_) { 1812 if (__s.__current_ == __s.__last_) { 1894 if (__s.__current_ == __s.__last_ && !(__s.__flags_ & regex_constants::match_not_eol)) { [all …]
|