Lines Matching defs:Method1
1511 CXXMethodDecl *Method1,
1514 Method1->getDeclKind() == Method2->getDeclKind() &&
1515 Method1->getRefQualifier() == Method2->getRefQualifier() &&
1516 Method1->getAccess() == Method2->getAccess() &&
1517 Method1->getOverloadedOperator() == Method2->getOverloadedOperator() &&
1518 Method1->isStatic() == Method2->isStatic() &&
1519 Method1->isImplicitObjectMemberFunction() ==
1521 Method1->isConst() == Method2->isConst() &&
1522 Method1->isVolatile() == Method2->isVolatile() &&
1523 Method1->isVirtual() == Method2->isVirtual() &&
1524 Method1->isPureVirtual() == Method2->isPureVirtual() &&
1525 Method1->isDefaulted() == Method2->isDefaulted() &&
1526 Method1->isDeleted() == Method2->isDeleted();
1531 if (auto *Constructor1 = dyn_cast<CXXConstructorDecl>(Method1)) {
1538 if (auto *Conversion1 = dyn_cast<CXXConversionDecl>(Method1)) {
1548 const IdentifierInfo *Name1 = Method1->getIdentifier();
1557 Method1->getType(), Method2->getType()))
2187 ObjCMethodDecl *Method1,
2190 Method1->isInstanceMethod() == Method2->isInstanceMethod() &&
2191 Method1->isVariadic() == Method2->isVariadic() &&
2192 Method1->isDirectMethod() == Method2->isDirectMethod();
2197 Selector Selector1 = Method1->getSelector(),
2212 if (!IsStructurallyEquivalent(Context, Method1->getReturnType(),
2216 Method1->param_size() == Method2->param_size() &&
2219 ParamT1 = Method1->param_type_begin(),
2220 ParamT1End = Method1->param_type_end(),
2281 for (ObjCCategoryDecl::method_iterator Method1 = D1->meth_begin(),
2283 Method1 != Method1End; ++Method1, ++Method2) {
2286 if (!IsStructurallyEquivalent(Context, *Method1, *Method2))