Home
last modified time | relevance | path

Searched refs:returns_int_ptr (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/libcxx/test/support/
H A Dcompare_types.h487 struct returns_int_ptr { struct
488 friend int* operator==(returns_int_ptr, returns_int_ptr);
489 friend int* operator!=(returns_int_ptr, returns_int_ptr);
490 friend int* operator<(returns_int_ptr, returns_int_ptr);
491 friend int* operator>(returns_int_ptr, returns_int_ptr);
492 friend int* operator<=(returns_int_ptr, returns_int_ptr);
493 friend int* operator>=(returns_int_ptr, returns_int_ptr);
501 friend int* operator<(returns_int_ptr, totally_ordered_with_others);
502 friend int* operator<(totally_ordered_with_others, returns_int_ptr);
503 friend int* operator>(returns_int_ptr, totally_ordered_with_others);
[all …]
/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.compare/concept.equalitycomparable/
H A Dequality_comparable.compile.pass.cpp142 static_assert(std::equality_comparable<returns_int_ptr>);
/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.compare/concepts.totallyordered/
H A Dtotally_ordered.pass.cpp166 static_assert(std::totally_ordered<returns_int_ptr>);
H A Dtotally_ordered_with.pass.cpp1113 check_totally_ordered_with<totally_ordered_with_others, returns_int_ptr>());
/llvm-project-15.0.7/clang/test/Sema/
H A Dnullability.c115 _Nonnull int *returns_int_ptr(int x) { in returns_int_ptr() function