Home | History | Annotate | Download | only in Sema

Lines Matching refs:Method

896         // We do not look directly into function or method contexts,
898 // function/method are present within the Scope.
900 // If we have an Objective-C instance method, look for ivars
902 if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) {
903 if (Method->isInstanceMethod() && Name.getAsIdentifierInfo())
904 if (ObjCInterfaceDecl *Class = Method->getClassInterface()) {
2837 if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) {
2838 if (Method->isInstanceMethod()) {
2839 // For instance methods, look for ivars in the method's interface.
2842 if (ObjCInterfaceDecl *IFace = Method->getClassInterface()) {
3283 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) {
3284 if (Method->isInstanceMethod() && Method->getClassInterface() &&
3289 = Method->getClassInterface()->lookupInstanceVariable(Name)) {
3313 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl())
3314 if (Method->getClassInterface() &&
3315 Method->getClassInterface()->getSuperClass())