Home
last modified time | relevance | path

Searched refs:in_range (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/utility/utility.intcmp/intcmp.in_range/
H A Din_range.pass.cpp40 assert(std::in_range<T>(tup.min)); in test_in_range1()
41 assert(std::in_range<T>(tup.min + 1)); in test_in_range1()
42 assert(std::in_range<T>(tup.max)); in test_in_range1()
43 assert(std::in_range<T>(tup.max - 1)); in test_in_range1()
44 assert(std::in_range<T>(tup.mid)); in test_in_range1()
45 assert(std::in_range<T>(tup.mid - 1)); in test_in_range1()
46 assert(std::in_range<T>(tup.mid + 1)); in test_in_range1()
53 assert(std::in_range<short>(utup8.max)); in test_in_range()
55 assert(std::in_range<int8_t>(utup8.mid)); in test_in_range()
57 assert(!std::in_range<uint8_t>(-1)); in test_in_range()
[all …]
/llvm-project-15.0.7/libcxx/test/std/utilities/utility/utility.intcmp/
H A Dintcmp.fail.cpp71 std::in_range<T>(int()); // expected-error 10-11 {{no matching function for call to 'in_range'}} in test()
72 std::in_range<int>(T()); // expected-error 10-11 {{no matching function for call to 'in_range'}} in test()
95 std::in_range<T>(int()); // expected-error 1 {{no matching function for call to 'in_range'}} in test_char8t()
96 std::in_range<int>(T()); // expected-error 1 {{no matching function for call to 'in_range'}} in test_char8t()
120 std::in_range<T>(int()); // expected-error 2 {{no matching function for call to 'in_range'}} in test_uchars()
121 std::in_range<int>(T()); // expected-error 2 {{no matching function for call to 'in_range'}} in test_uchars()
/llvm-project-15.0.7/llvm/utils/lit/lit/formats/
H A Dgoogletest.py156 in_range = False
159 in_range = True
162 elif in_range:
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp106 bool in_range = false; in VerifyWatchpointIDs() local
109 if (in_range) { in VerifyWatchpointIDs()
117 in_range = false; in VerifyWatchpointIDs()
125 in_range = true; in VerifyWatchpointIDs()
135 return !in_range; in VerifyWatchpointIDs()
/llvm-project-15.0.7/libcxx/include/__utility/
H A Dcmp.h96 bool in_range(_Up __u) noexcept in in_range() function
/llvm-project-15.0.7/lldb/source/Target/
H A DThreadPlanStepRange.cpp486 bool in_range = in IsPlanStale() local
488 if (in_range) { in IsPlanStale()
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.sorting/alg.sort/partial.sort.copy/
H A Dranges_partial_sort_copy.pass.cpp157 auto in_range = std::ranges::subrange(Iter(begin), Sent(Iter(end))); in test_one() local
160 … std::same_as<ResultT> decltype(auto) result = std::ranges::partial_sort_copy(in_range, out_range); in test_one()
/llvm-project-15.0.7/lldb/docs/
H A Dpython_api.rst96 :skip: in_range
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBModule.i16 def in_range(symbol, section):
398 if in_range(sym, section):
/llvm-project-15.0.7/llvm/test/Analysis/ScalarEvolution/
H A Dtrip-count-implied-addrec.ll433 %in_range = icmp ult i16 %n, 256
434 br i1 %in_range, label %for.body, label %for.end
/llvm-project-15.0.7/libcxx/include/
H A Dutility67 template<class R, class T> constexpr bool in_range(T t) noexcept; // C++20
H A Dmemory207 uninitialized_copy(InputRange&& in_range, OutputRange&& out_range); // since C++20
307 uninitialized_move(InputRange&& in_range, OutputRange&& out_range); // since C++20
/llvm-project-15.0.7/llvm/test/Transforms/IndVarSimplify/
H A Dfinite-exit-comparisons.ll1041 %in_range = icmp ult i16 %n, 256
1042 br i1 %in_range, label %for.body, label %for.end