Searched defs:CurMethod (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3255 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3256 if (CurMethod->isInstance())
3258 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
5109 ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); local
5110 if (!CurMethod)
5113 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5121 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5122 CurMethod->isInstanceMethod());
5127 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
5128 CurMethod
[all...]
H A DSemaDecl.cpp690 ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
698 LookupParsedName(Result, S, &SS, !CurMethod);
712 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
H A DSemaExpr.cpp1760 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); local
1761 bool isInstance = CurMethod &&
1762 CurMethod->isInstance() &&
1763 DC == CurMethod->getParent() && !isDefaultArgument;
1778 if (CurMethod->isDependentContext())
1779 DepMethod = CurMethod;
1780 else if (CurMethod->getTemplatedKind() ==
1782 DepMethod = cast<CXXMethodDecl>(CurMethod->getPrimaryTemplate()->
1786 CurMethod->getInstantiatedFromMemberFunction());
2292 ObjCMethodDecl *CurMethod local
[all...]

Completed in 743 milliseconds