Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp110 for (lookup_iterator Meth = R.begin(), MethEnd = R.end(); in getMethod() local
111 Meth != MethEnd; ++Meth) { in getMethod()
112 auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); in getMethod()
128 for (lookup_iterator Meth = R.begin(), MethEnd = R.end(); in HasUserDeclaredSetterMethod() local
129 Meth != MethEnd; ++Meth) { in HasUserDeclaredSetterMethod()
130 auto *MD = dyn_cast<ObjCMethodDecl>(*Meth); in HasUserDeclaredSetterMethod()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp10836 if (const auto *Meth = dyn_cast<CXXMethodDecl>(Fn)) { in ClassifyOverloadCandidate() local
10839 if (!Meth->isImplicit()) in ClassifyOverloadCandidate()
10842 if (Meth->isMoveAssignmentOperator()) in ClassifyOverloadCandidate()
10845 if (Meth->isCopyAssignmentOperator()) in ClassifyOverloadCandidate()
10848 assert(isa<CXXConversionDecl>(Meth) && "expected conversion"); in ClassifyOverloadCandidate()
11744 CXXMethodDecl *Meth = dyn_cast<CXXMethodDecl>(Callee); in DiagnoseBadTarget() local
11745 if (Meth != nullptr && Meth->isImplicit()) { in DiagnoseBadTarget()
11746 CXXRecordDecl *ParentClass = Meth->getParent(); in DiagnoseBadTarget()
11770 if (Meth->getNumParams()) { in DiagnoseBadTarget()
11772 Meth->getParamDecl(0)->getType()->getAs<ReferenceType>()) { in DiagnoseBadTarget()
[all …]