Home
last modified time | relevance | path

Searched refs:UserType (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/pstl/test/std/algorithms/alg.nonmodifying/
H A Dequal.pass.cpp23 struct UserType struct
31 operator()(UserType a, UserType b) in operator ()() argument
36 operator<(UserType a) in operator <() argument
41 operator>=(UserType a) in operator >=() argument
46 operator<=(UserType a) in operator <=() argument
51 operator==(UserType a) in operator ==() argument
61 operator!=(UserType a) in operator !=() argument
65 UserType operator!() in operator !() argument
67 UserType tmp; in operator !()
80 UserType&
[all …]
/llvm-project-15.0.7/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
H A Dctor.pass.cpp22 struct UserType { struct
25 UserType() noexcept {} in UserType() argument
26 constexpr explicit UserType(int d) noexcept : i(d) {} in UserType() argument
28 friend bool operator==(const UserType& x, const UserType& y) { return x.i == y.i; } in operator ==()
48 TestFunc<UserType>()(); in main()
/llvm-project-15.0.7/libcxx/test/std/experimental/simd/simd.traits/
H A Dis_simd_flag_type.pass.cpp24 struct UserType {}; struct
34 static_assert(!ex::is_simd_flag_type<UserType>::value, "");
46 static_assert(!ex::is_simd_flag_type_v<UserType>, "");
H A Dis_abi_tag.pass.cpp24 struct UserType {}; struct
63 static_assert(!ex::is_abi_tag<UserType>::value, "");
106 static_assert(!ex::is_abi_tag_v<UserType>, "");
H A Dis_simd.pass.cpp24 struct UserType {}; struct
75 static_assert(!ex::is_simd<UserType>::value, "");
126 static_assert(!ex::is_simd_v<UserType>, "");
H A Dis_simd_mask.pass.cpp24 struct UserType {}; struct
98 static_assert(!ex::is_simd_mask<UserType>::value, "");
149 static_assert(!ex::is_simd_mask_v<UserType>, "");
/llvm-project-15.0.7/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/
H A Dtuple.by.type.fail.cpp15 struct UserType {}; struct
18 std::tuple<long, long, char, std::string, char, UserType, char> t1; in test_bad_index()