Searched refs:CurMethod (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp7069 ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); local
7070 if (!CurMethod)
7073 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
7081 SuperMethod = Class->getMethod(CurMethod->getSelector(),
7082 CurMethod->isInstanceMethod());
7087 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
7088 CurMethod->isInstanceMethod())))
7098 if (CurMethod->param_size() != SuperMethod->param_size() ||
7099 CurMethod->isVariadic() != SuperMethod->isVariadic())
7102 for (ObjCMethodDecl::param_iterator CurP = CurMethod
[all...]
H A DSemaExprMember.cpp1815 auto *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); local
1816 if (!(CurMethod && CurMethod->isDefaulted()))
H A DSemaExprObjC.cpp1492 if (ObjCMethodDecl *CurMethod = S.getCurMethodDecl())
1493 if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface()) {
2161 if (ObjCMethodDecl *CurMethod = tryCaptureObjCSelf(receiverNameLoc)) {
2162 if (auto classDecl = CurMethod->getClassInterface()) {
2164 if (CurMethod->isInstanceMethod()) {
2168 << CurMethod->getClassInterface()->getIdentifier();
2183 IFace = CurMethod->getClassInterface()->getSuperClass();
H A DSemaDeclObjC.cpp5259 for (const auto *CurMethod : ImplD->instance_methods()) {
5261 SourceLocation Loc = CurMethod->getLocation();
5266 const ObjCIvarDecl *IV = GetIvarBackingPropertyAccessor(CurMethod, PDecl);
5270 if (CurMethod->isSynthesizedAccessorStub())
5273 UnusedBackingIvarChecker Checker(*this, CurMethod, IV);
5274 Checker.TraverseStmt(CurMethod->getBody());
H A DSemaExpr.cpp2102 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); local
2103 bool isInstance = CurMethod &&
2104 CurMethod->isInstance() &&
2105 DC == CurMethod->getParent() && !isDefaultArgument;
2641 ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
2644 if (!CurMethod)
2656 bool IsClassMethod = CurMethod->isClassMethod();
2668 IFace = CurMethod->getClassInterface();
2687 } else if (CurMethod->isInstanceMethod()) {
2689 if (ObjCInterfaceDecl *IFace = CurMethod
2713 ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
[all...]
H A DSemaDecl.cpp860 ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
874 LookupParsedName(Result, S, &SS, !CurMethod);
891 if (SS.isEmpty() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp2200 } else if (auto CurMethod =
2202 auto Self = CurMethod->getSelfDecl();

Completed in 192 milliseconds