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.cpp347 for (auto *Meth : Record->methods()) in completeVisibleDeclsMap() local
348 SetExternalVisibleDeclsForName(ChildDeclContext, Meth->getDeclName(), in completeVisibleDeclsMap()
349 Meth); in completeVisibleDeclsMap()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp111 for (lookup_iterator Meth = R.begin(), MethEnd = R.end(); in getMethod() local
112 Meth != MethEnd; ++Meth) { in getMethod()
113 auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); in getMethod()
129 for (lookup_iterator Meth = R.begin(), MethEnd = R.end(); in HasUserDeclaredSetterMethod() local
130 Meth != MethEnd; ++Meth) { in HasUserDeclaredSetterMethod()
131 auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); in HasUserDeclaredSetterMethod()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp10848 if (const auto *Meth = dyn_cast<CXXMethodDecl>(Fn)) { in ClassifyOverloadCandidate() local
10851 if (!Meth->isImplicit()) in ClassifyOverloadCandidate()
10854 if (Meth->isMoveAssignmentOperator()) in ClassifyOverloadCandidate()
10857 if (Meth->isCopyAssignmentOperator()) in ClassifyOverloadCandidate()
10860 assert(isa<CXXConversionDecl>(Meth) && "expected conversion"); in ClassifyOverloadCandidate()
11783 CXXMethodDecl *Meth = dyn_cast<CXXMethodDecl>(Callee); in DiagnoseBadTarget() local
11784 if (Meth != nullptr && Meth->isImplicit()) { in DiagnoseBadTarget()
11785 CXXRecordDecl *ParentClass = Meth->getParent(); in DiagnoseBadTarget()
11809 if (Meth->getNumParams()) { in DiagnoseBadTarget()
11811 Meth->getParamDecl(0)->getType()->getAs<ReferenceType>()) { in DiagnoseBadTarget()
[all …]