Searched refs:CurMethod (Results 1 – 7 of 7) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 7252 ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); in AddSuperSendCompletion() local 7253 if (!CurMethod) in AddSuperSendCompletion() 7256 ObjCInterfaceDecl *Class = CurMethod->getClassInterface(); in AddSuperSendCompletion() 7264 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion() 7265 CurMethod->isInstanceMethod()); in AddSuperSendCompletion() 7270 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion() 7271 CurMethod->isInstanceMethod()))) in AddSuperSendCompletion() 7281 if (CurMethod->param_size() != SuperMethod->param_size() || in AddSuperSendCompletion() 7282 CurMethod->isVariadic() != SuperMethod->isVariadic()) in AddSuperSendCompletion() 7285 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(), in AddSuperSendCompletion() [all …]
|
| H A D | SemaExprObjC.cpp | 1495 if (ObjCMethodDecl *CurMethod = S.getCurMethodDecl()) in getBaseMessageSendResultType() local 1496 if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface()) { in getBaseMessageSendResultType() 2173 if (ObjCMethodDecl *CurMethod = tryCaptureObjCSelf(receiverNameLoc)) { in ActOnClassPropertyRefExpr() local 2174 if (auto classDecl = CurMethod->getClassInterface()) { in ActOnClassPropertyRefExpr() 2176 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr() 2180 << CurMethod->getClassInterface()->getIdentifier(); in ActOnClassPropertyRefExpr() 2195 IFace = CurMethod->getClassInterface()->getSuperClass(); in ActOnClassPropertyRefExpr()
|
| H A D | SemaExprMember.cpp | 1822 auto *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); in BuildFieldReferenceExpr() local 1823 if (!(CurMethod && CurMethod->isDefaulted())) in BuildFieldReferenceExpr()
|
| H A D | SemaDeclObjC.cpp | 5324 for (const auto *CurMethod : ImplD->instance_methods()) { in DiagnoseUnusedBackingIvarInAccessor() local 5326 SourceLocation Loc = CurMethod->getLocation(); in DiagnoseUnusedBackingIvarInAccessor() 5331 const ObjCIvarDecl *IV = GetIvarBackingPropertyAccessor(CurMethod, PDecl); in DiagnoseUnusedBackingIvarInAccessor() 5335 if (CurMethod->isSynthesizedAccessorStub()) in DiagnoseUnusedBackingIvarInAccessor() 5338 UnusedBackingIvarChecker Checker(*this, CurMethod, IV); in DiagnoseUnusedBackingIvarInAccessor() 5339 Checker.TraverseStmt(CurMethod->getBody()); in DiagnoseUnusedBackingIvarInAccessor()
|
| H A D | SemaExpr.cpp | 2150 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); in DiagnoseDependentMemberLookup() local 2151 bool isInstance = CurMethod && CurMethod->isInstance() && in DiagnoseDependentMemberLookup() 2152 R.getNamingClass() == CurMethod->getParent() && in DiagnoseDependentMemberLookup() 2759 ObjCMethodDecl *CurMethod = getCurMethodDecl(); in LookupIvarInObjCMethod() local 2762 if (!CurMethod) in LookupIvarInObjCMethod() 2774 bool IsClassMethod = CurMethod->isClassMethod(); in LookupIvarInObjCMethod() 2786 IFace = CurMethod->getClassInterface(); in LookupIvarInObjCMethod() 2805 } else if (CurMethod->isInstanceMethod()) { in LookupIvarInObjCMethod() 2807 if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) { in LookupIvarInObjCMethod() 2831 ObjCMethodDecl *CurMethod = getCurMethodDecl(); in BuildIvarRefExpr() local [all …]
|
| H A D | SemaDecl.cpp | 858 ObjCMethodDecl *CurMethod = getCurMethodDecl(); in ClassifyName() local 872 LookupParsedName(Result, S, &SS, !CurMethod); in ClassifyName() 889 if (SS.isEmpty() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) { in ClassifyName()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGObjCMac.cpp | 2217 } else if (auto CurMethod = in EmitMessageSend() local 2219 auto Self = CurMethod->getSelfDecl(); in EmitMessageSend()
|