Home | History | Annotate | Download | only in Sema

Lines Matching refs:oldMethod

1703     const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
1705 if (OldMethod && NewMethod) {
1707 NewMethod->setTrivial(OldMethod->isTrivial());
1715 if (OldMethod->isStatic() || NewMethod->isStatic()) {
1726 if (isa<CXXConstructorDecl>(OldMethod))
1743 } else if (OldMethod->isImplicit()) {
1749 << New << getSpecialMember(OldMethod);
1752 } else if (OldMethod->isExplicitlyDefaulted()) {
1755 << getSpecialMember(OldMethod);
1951 const ObjCMethodDecl *oldMethod) {
1953 mergeDeclAttributes(newMethod, oldMethod, Context);
1956 for (ObjCMethodDecl::param_iterator oi = oldMethod->param_begin(),
1961 CheckObjCMethodOverride(newMethod, oldMethod, true);