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

/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3362 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3363 if (CurMethod->isInstance())
3365 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
5331 ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); local
5332 if (!CurMethod)
5335 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5343 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5344 CurMethod->isInstanceMethod());
5349 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
5350 CurMethod
[all...]
H A DSemaDecl.cpp736 ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
744 LookupParsedName(Result, S, &SS, !CurMethod);
758 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
H A DSemaExpr.cpp1831 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); local
1832 bool isInstance = CurMethod &&
1833 CurMethod->isInstance() &&
1834 DC == CurMethod->getParent() && !isDefaultArgument;
2369 ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
2372 if (!CurMethod)
2384 bool IsClassMethod = CurMethod->isClassMethod();
2396 IFace = CurMethod->getClassInterface();
2439 ObjCMethodFamily MF = CurMethod->getMethodFamily();
2441 !IvarBacksCurrentMethodAccessor(IFace, CurMethod, I
[all...]

Completed in 130 milliseconds