HomeSort by relevance Sort by last modified time
    Searched refs:NonConstCopy (Results 1 - 8 of 8) sorted by null

  /external/clang/test/CXX/special/class.copy/
p20.cpp 8 struct NonConstCopy {
9 NonConstCopy();
10 NonConstCopy &operator=(NonConstCopy&);
13 struct VirtualInheritsNonConstCopy : virtual NonConstCopy {
18 struct ImplicitNonConstCopy1 : NonConstCopy { // expected-note{{the implicit copy assignment operator}}
24 NonConstCopy ncc;
29 NonConstCopy ncc_array[2][3];
p9.cpp 8 struct NonConstCopy {
9 NonConstCopy();
10 NonConstCopy(NonConstCopy&);
13 struct VirtualInheritsNonConstCopy : virtual NonConstCopy {
18 struct ImplicitNonConstCopy1 : NonConstCopy { // expected-note {{candidate constructor}}
24 NonConstCopy ncc;
29 NonConstCopy ncc_array[2][3];
p18-cxx11.cpp 16 struct NonConstCopy {
17 NonConstCopy &operator=(NonConstCopy &);
43 struct B : NonConstCopy { ConstCopy a; };
44 struct C : ConstCopy { NonConstCopy a; };
p8-cxx11.cpp 16 struct NonConstCopy {
17 NonConstCopy(NonConstCopy &);
34 struct B : NonConstCopy { ConstCopy a; };
35 struct C : ConstCopy { NonConstCopy a; };
p12-0x.cpp 28 struct NonConstCopy {
29 NonConstCopy(NonConstCopy &) = default;
31 using _ = not_trivially_copyable<NonConstCopy>;
111 struct NCCTNT : NonConstCopy, TNT {};
p25-0x.cpp 31 struct NonConstCopy {
32 NonConstCopy &operator=(NonConstCopy &) = default;
34 using _ = not_trivially_assignable<NonConstCopy>;
105 struct NCCTNT : NonConstCopy, TNT {};
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p14.cpp 11 class NonConstCopy {
13 NonConstCopy(NonConstCopy&); // expected-note{{would lose const}}
16 void capture_by_copy(NonCopyable nc, NonCopyable &ncr, const NonConstCopy nco) {
22 [nco] {}(); // expected-error{{no matching constructor for initialization of 'const NonConstCopy'}}
templates.cpp 102 struct NonConstCopy {
103 NonConstCopy(const NonConstCopy&) = delete;
104 NonConstCopy(NonConstCopy&);
116 template void double_capture(NonConstCopy&);

Completed in 75 milliseconds