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

/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCodeComplete.cpp3265 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3266 if (CurMethod->isInstance())
3268 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
5167 ObjCMethodDecl *CurMethod = S.getCurMethodDecl(); local
5168 if (!CurMethod)
5171 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5179 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5180 CurMethod->isInstanceMethod());
5188 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
5189 CurMethod
[all...]
H A DSemaExprObjC.cpp1097 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
1098 if (ObjCInterfaceDecl *Class = CurMethod->getClassInterface())
1674 if (ObjCMethodDecl *CurMethod = tryCaptureObjCSelf(receiverNameLoc)) {
1675 if (CurMethod->isInstanceMethod()) {
1677 CurMethod->getClassInterface()->getSuperClass();
1681 << CurMethod->getClassInterface()->getIdentifier();
1697 IFace = CurMethod->getClassInterface()->getSuperClass();
H A DSemaExpr.cpp1742 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext); local
1743 bool isInstance = CurMethod &&
1744 CurMethod->isInstance() &&
1745 DC == CurMethod->getParent() && !isDefaultArgument;
1760 if (CurMethod->isDependentContext())
1761 DepMethod = CurMethod;
1762 else if (CurMethod->getTemplatedKind() ==
1764 DepMethod = cast<CXXMethodDecl>(CurMethod->getPrimaryTemplate()->
1768 CurMethod->getInstantiatedFromMemberFunction());
2197 ObjCMethodDecl *CurMethod local
[all...]
H A DSemaDeclObjC.cpp3531 const ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
3532 if (!CurMethod)
3535 const ObjCIvarDecl *IV = GetIvarBackingPropertyAccessor(CurMethod, PDecl);
H A DSemaDecl.cpp581 ObjCMethodDecl *CurMethod = getCurMethodDecl(); local
590 LookupParsedName(Result, S, &SS, !CurMethod);
596 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {

Completed in 223 milliseconds