Home
last modified time | relevance | path

Searched defs:ConvertibleTo (Results 1 – 12 of 12) sorted by relevance

/llvm-project/libcxx/test/std/strings/string.view/string.view.comparison/
H A Dless_equal.pass.cpp26 struct ConvertibleTo { struct
28 TEST_CONSTEXPR explicit ConvertibleTo(T t) : t_(t) {} in ConvertibleTo() function
51 assert((ConvertibleTo<SV>(v[i]) <= v[j]) == expected); in test() argument
H A Dequal.pass.cpp26 struct ConvertibleTo { struct
28 TEST_CONSTEXPR explicit ConvertibleTo(T t) : t_(t) {} in ConvertibleTo() argument
51 assert((ConvertibleTo<SV>(v[i]) == v[j]) == expected); in test() argument
H A Dgreater_equal.pass.cpp26 struct ConvertibleTo { struct
28 TEST_CONSTEXPR explicit ConvertibleTo(T t) : t_(t) {} in ConvertibleTo() argument
51 assert((ConvertibleTo<SV>(v[i]) >= v[j]) == expected); in test() argument
H A Dnot_equal.pass.cpp26 struct ConvertibleTo { struct
28 TEST_CONSTEXPR explicit ConvertibleTo(T t) : t_(t) {} in ConvertibleTo() argument
51 assert((ConvertibleTo<SV>(v[i]) != v[j]) == expected); in test() argument
H A Dless.pass.cpp26 struct ConvertibleTo { struct
28 TEST_CONSTEXPR explicit ConvertibleTo(T t) : t_(t) {} in ConvertibleTo() argument
51 assert((ConvertibleTo<SV>(v[i]) < v[j]) == expected); in test() argument
H A Dgreater.pass.cpp26 struct ConvertibleTo { struct
28 TEST_CONSTEXPR explicit ConvertibleTo(T t) : t_(t) {} in ConvertibleTo() argument
51 assert((ConvertibleTo<SV>(v[i]) > v[j]) == expected); in test() argument
/llvm-project/libcxx/test/std/iterators/predef.iterators/counted.iterator/
H A Dctor.conv.pass.cpp21 class ConvertibleTo class
35 explicit constexpr ConvertibleTo(int *it) : it_(it) {} in ConvertibleTo() function in ConvertibleTo
/llvm-project/third-party/unittest/googletest/include/gtest/internal/custom/
H A Draw-ostream.h64 template <typename T> struct ConvertibleTo { operator T(); }; struct
/llvm-project/clang/test/SemaObjCXX/
H A Dobjc-container-subscripting.mm48 struct ConvertibleTo { struct
57 template<typename T> ConvertibleTo<T> makeConvertible(); argument
H A Dliterals.mm56 struct ConvertibleTo { struct
71 template<typename T> ConvertibleTo<T> makeConvertible(); argument
/llvm-project/libcxx/test/support/
H A Dpoisoned_hash_helper.h111 struct ConvertibleTo { global() struct
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/abseil/
H A Dupgrade-duration-conversions.cpp7 template <typename T> struct ConvertibleTo { struct