Home
last modified time | relevance | path

Searched defs:Copyable (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/test/CodeGenObjCXX/
H A Dlambda-to-block.mm28 struct Copyable { struct
29 Copyable(const Copyable &x); argument
34 void hasLambda(Copyable x) { argument
64 void testHelperMerging(Copyable x) { argument
/llvm-project-15.0.7/libcxx/test/libcxx/ranges/range.adaptors/range.copy.wrap/
H A Dtypes.h59 struct Copyable { struct
61 constexpr explicit Copyable(int x) : value(x) { } in Copyable() argument
64 constexpr Copyable& operator=(Copyable const& other) noexcept(false) { in noexcept() argument
70 constexpr Copyable& operator=(Copyable&& other) noexcept(false) { in noexcept() argument
80 static_assert( std::copyable<Copyable>); argument
/llvm-project-15.0.7/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/
H A Dlv_value.pass.cpp35 class Copyable class
39 Copyable() : data_(0) {} in Copyable() function in Copyable
/llvm-project-15.0.7/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/
H A Dlv_value.pass.cpp35 class Copyable class
39 Copyable() : data_(0) {} in Copyable() function in Copyable
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.reverse/
H A Dtypes.h31 enum CopyCategory { MoveOnly, Copyable }; enumerator
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dcopy-constructor-init.cpp21 class Copyable { class