Home
last modified time | relevance | path

Searched refs:CurMethod (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/Sema/
DSemaCodeComplete.cpp3178 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext)) in CodeCompleteOrdinaryName() local
3179 if (CurMethod->isInstance()) in CodeCompleteOrdinaryName()
3181 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers())); in CodeCompleteOrdinaryName()
5061 ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); in AddSuperSendCompletion() local
5062 if (!CurMethod) in AddSuperSendCompletion()
5065 ObjCInterfaceDecl *Class = CurMethod->getClassInterface(); in AddSuperSendCompletion()
5073 SuperMethod = Class->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5074 CurMethod->isInstanceMethod()); in AddSuperSendCompletion()
5080 if ((SuperMethod = Category->getMethod(CurMethod->getSelector(), in AddSuperSendCompletion()
5081 CurMethod->isInstanceMethod()))) in AddSuperSendCompletion()
[all …]
DSemaExprObjC.cpp1075 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) in getMessageSendResultType() local
1076 if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface()) in getMessageSendResultType()
1545 if (ObjCMethodDecl *CurMethod = tryCaptureObjCSelf(receiverNameLoc)) { in ActOnClassPropertyRefExpr() local
1546 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr()
1548 Context.getObjCInterfaceType(CurMethod->getClassInterface()); in ActOnClassPropertyRefExpr()
1561 IFace = CurMethod->getClassInterface()->getSuperClass(); in ActOnClassPropertyRefExpr()
DSemaExpr.cpp1492 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); in DiagnoseEmptyLookup() local
1493 bool isInstance = CurMethod && in DiagnoseEmptyLookup()
1494 CurMethod->isInstance() && in DiagnoseEmptyLookup()
1495 DC == CurMethod->getParent() && !isDefaultArgument; in DiagnoseEmptyLookup()
1511 if (CurMethod->getTemplatedKind() == in DiagnoseEmptyLookup()
1513 DepMethod = cast<CXXMethodDecl>(CurMethod->getPrimaryTemplate()-> in DiagnoseEmptyLookup()
1517 CurMethod->getInstantiatedFromMemberFunction()); in DiagnoseEmptyLookup()
1906 ObjCMethodDecl *CurMethod = getCurMethodDecl(); in LookupInObjCMethod() local
1917 bool IsClassMethod = CurMethod->isClassMethod(); in LookupInObjCMethod()
1929 IFace = CurMethod->getClassInterface(); in LookupInObjCMethod()
[all …]
DSemaDecl.cpp594 ObjCMethodDecl *CurMethod = getCurMethodDecl(); in ClassifyName() local
603 LookupParsedName(Result, S, &SS, !CurMethod); in ClassifyName()
609 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) { in ClassifyName()