Searched refs:CopyAssign (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/CXX/special/class.copy/
H A Dp23-cxx11.cpp5 template<typename T> struct CopyAssign { struct
66 template struct CopyAssign<A1>; // expected-note {{here}}
86 template struct CopyAssign<B1>; // expected-note {{here}}
88 template struct CopyAssign<B2>; // expected-note {{here}}
90 template struct CopyAssign<B3>;
97 template struct CopyAssign<C1>; // expected-note {{here}}
128 template struct CopyAssign<D1>; // expected-note {{here}}
131 template struct CopyAssign<D3>; // expected-note {{here}}
134 template struct CopyAssign<D5>; // expected-note {{here}}
137 template struct CopyAssign<D
[all...]
/external/clang/test/CXX/class/class.union/
H A Dp1.cpp30 class CopyAssign { // expected-note 2 {{because no assignment operator can be used to copy an object of type 'const CopyAssign'}} class
31 CopyAssign& operator=(CopyAssign& CA) { abort(); }
45 CopyAssign copyassign; // expected-error {{union member 'copyassign' has a non-trivial copy assignment operator}}
67 CopyAssign copyassign;
88 struct s5 : CopyAssign { // expected-note {{because no assignment operator can be used to copy an object of type 'const U3::s5'}}
130 Either<int,CopyAssign> copyassign(0); // expected-note {{in instantiation of template}}
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field_unittest.cc276 TEST(RepeatedField, CopyAssign) {
704 TEST(RepeatedPtrField, CopyAssign) {
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp9459 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
9461 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign);
9467 if (CXXMethodDecl *CopyAssign = LookupCopyingAssignment(BaseClassDecl,
9469 ExceptSpec.CalledDecl(Base.getLocStart(), CopyAssign);
9475 if (CXXMethodDecl *CopyAssign =
9479 ExceptSpec.CalledDecl(Field->getLocation(), CopyAssign);

Completed in 2021 milliseconds