Home | History | Annotate | Download | only in AST

Lines Matching refs:Method1

1286                                      CXXMethodDecl *Method1,
1289 Method1->getDeclKind() == Method2->getDeclKind() &&
1290 Method1->getRefQualifier() == Method2->getRefQualifier() &&
1291 Method1->getAccess() == Method2->getAccess() &&
1292 Method1->getOverloadedOperator() == Method2->getOverloadedOperator() &&
1293 Method1->isStatic() == Method2->isStatic() &&
1294 Method1->isConst() == Method2->isConst() &&
1295 Method1->isVolatile() == Method2->isVolatile() &&
1296 Method1->isVirtual() == Method2->isVirtual() &&
1297 Method1->isPure() == Method2->isPure() &&
1298 Method1->isDefaulted() == Method2->isDefaulted() &&
1299 Method1->isDeleted() == Method2->isDeleted();
1304 if (auto *Constructor1 = dyn_cast<CXXConstructorDecl>(Method1)) {
1311 if (auto *Conversion1 = dyn_cast<CXXConversionDecl>(Method1)) {
1321 const IdentifierInfo *Name1 = Method1->getIdentifier();
1330 Method1->getType(), Method2->getType()))