Home
last modified time | relevance | path

Searched refs:InputRange (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dmemory206 template<input_range InputRange, nothrow-forward-range OutputRange>
207 requires constructible_from<range_value_t<OutputRange>, range_reference_t<InputRange>>
208 uninitialized_copy_result<borrowed_iterator_t<InputRange>, borrowed_iterator_t<OutputRange>>
209 uninitialized_copy(InputRange&& in_range, OutputRange&& out_range); // since C++20
279 template<nothrow-input-range InputRange>
280 requires destructible<range_value_t<InputRange>>
281 constexpr borrowed_iterator_t<InputRange> destroy(InputRange&& range) noexcept; // since C++20
306 template<input_range InputRange, nothrow-forward-range OutputRange>
307 requires constructible_from<range_value_t<OutputRange>, range_rvalue_reference_t<InputRange>>
308 uninitialized_move_result<borrowed_iterator_t<InputRange>, borrowed_iterator_t<OutputRange>>
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/FileCheck/
H A DFileCheck.h171 SMLoc CheckLoc, MatchType MatchTy, SMRange InputRange,
/freebsd-14.2/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1458 SMRange InputRange, StringRef Note) in FileCheckDiag() argument
1460 auto Start = SM.getLineAndColumn(InputRange.Start); in FileCheckDiag()
1461 auto End = SM.getLineAndColumn(InputRange.End); in FileCheckDiag()