Home
last modified time | relevance | path

Searched refs:Meth (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DCodeCompletion.cpp349 for (auto *Meth : Record->methods()) in completeVisibleDeclsMap() local
350 SetExternalVisibleDeclsForName(ChildDeclContext, Meth->getDeclName(), in completeVisibleDeclsMap()
351 Meth); in completeVisibleDeclsMap()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp108 for (lookup_iterator Meth = R.begin(), MethEnd = R.end(); in getMethod() local
109 Meth != MethEnd; ++Meth) { in getMethod()
110 auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); in getMethod()
126 for (lookup_iterator Meth = R.begin(), MethEnd = R.end(); in HasUserDeclaredSetterMethod() local
127 Meth != MethEnd; ++Meth) { in HasUserDeclaredSetterMethod()
128 auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); in HasUserDeclaredSetterMethod()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp11541 if (const auto *Meth = dyn_cast<CXXMethodDecl>(Fn)) { in ClassifyOverloadCandidate() local
11544 if (!Meth->isImplicit()) in ClassifyOverloadCandidate()
11547 if (Meth->isMoveAssignmentOperator()) in ClassifyOverloadCandidate()
11550 if (Meth->isCopyAssignmentOperator()) in ClassifyOverloadCandidate()
11553 assert(isa<CXXConversionDecl>(Meth) && "expected conversion"); in ClassifyOverloadCandidate()
12494 CXXMethodDecl *Meth = dyn_cast<CXXMethodDecl>(Callee); in DiagnoseBadTarget() local
12495 if (Meth != nullptr && Meth->isImplicit()) { in DiagnoseBadTarget()
12496 CXXRecordDecl *ParentClass = Meth->getParent(); in DiagnoseBadTarget()
12520 if (Meth->getNumParams()) { in DiagnoseBadTarget()
12522 Meth->getParamDecl(0)->getType()->getAs<ReferenceType>()) { in DiagnoseBadTarget()
[all …]