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

/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3241 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3242 if (CurMethod->isInstance())
3244 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
5149 ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); local
5150 if (!CurMethod)
5153 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5161 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5162 CurMethod->isInstanceMethod());
5170 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
5171 CurMethod
[all...]
H A DSemaExprObjC.cpp1075 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
1076 if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface())
1562 if (ObjCMethodDecl *CurMethod = tryCaptureObjCSelf(receiverNameLoc)) {
1563 if (CurMethod->isInstanceMethod()) {
1565 CurMethod->getClassInterface()->getSuperClass();
1569 << CurMethod->getClassInterface()->getIdentifier();
1585 IFace = CurMethod->getClassInterface()->getSuperClass();
H A DSemaExpr.cpp1549 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); local
1550 bool isInstance = CurMethod &&
1551 CurMethod->isInstance() &&
1552 DC == CurMethod->getParent() && !isDefaultArgument;
1568 if (CurMethod->getTemplatedKind() ==
1570 DepMethod = cast<CXXMethodDecl>(CurMethod->getPrimaryTemplate()->
1574 CurMethod->getInstantiatedFromMemberFunction());
1982 ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
1985 if (!CurMethod)
1997 bool IsClassMethod = CurMethod
[all...]
H A DSemaDecl.cpp594 ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
603 LookupParsedName(Result, S, &SS, !CurMethod);
609 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {

Completed in 1420 milliseconds