Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Method

65 /// expression when the method has a related result type.
68 const ObjCMethodDecl *Method,
70 if (!Method)
73 if (!Method->hasRelatedResultType() ||
74 CGF.getContext().hasSameType(E->getType(), Method->getResultType()) ||
85 // Only the lookup mechanism and first two arguments of the method
182 // super is only valid in an Objective-C method
222 const ObjCMethodDecl *method = cast<ObjCMethodDecl>(CGF.CurCodeDecl);
224 const ObjCImplDecl *impl = cast<ObjCImplDecl>(method->getDeclContext());
236 method->getSelector(),
242 method);
254 // Check if we should generate debug info for this method.
321 /// Generate an Objective-C method. An Objective-C method is a C function with
343 assert(OMD && "Invalid call to generate getter (empty method)");
551 assert(OMD && "Invalid call to generate setter (empty method)");
851 const ObjCMethodDecl *method;
855 method = Property->getGetterMethodDecl();
857 method = E->getImplicitPropertyGetter();
858 S = method->getSelector();
875 return AdjustRelatedResultType(*this, E, method,
882 return AdjustRelatedResultType(*this, E, method,