• Home
  • Raw
  • Download

Lines Matching refs:ObjCMethodDecl

67 ObjCMethodDecl *
88 ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(*Meth); in getMethod()
379 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod()
387 ObjCMethodDecl *MethodDecl = 0; in lookupMethod()
430 ObjCMethodDecl *ObjCInterfaceDecl::lookupPrivateMethod( in lookupPrivateMethod()
440 ObjCMethodDecl *Method = 0; in lookupPrivateMethod()
470 ObjCMethodDecl *ObjCMethodDecl::Create(ASTContext &C, in Create()
483 return new (C) ObjCMethodDecl(beginLoc, endLoc, in Create()
491 ObjCMethodDecl *ObjCMethodDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
492 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ObjCMethodDecl)); in CreateDeserialized()
493 return new (Mem) ObjCMethodDecl(SourceLocation(), SourceLocation(), in CreateDeserialized()
497 Stmt *ObjCMethodDecl::getBody() const { in getBody()
501 void ObjCMethodDecl::setAsRedeclaration(const ObjCMethodDecl *PrevMethod) { in setAsRedeclaration()
508 void ObjCMethodDecl::setParamsAndSelLocs(ASTContext &C, in setParamsAndSelLocs()
523 void ObjCMethodDecl::getSelectorLocs( in getSelectorLocs()
529 void ObjCMethodDecl::setMethodParams(ASTContext &C, in setMethodParams()
548 ObjCMethodDecl *ObjCMethodDecl::getNextRedeclaration() { in getNextRedeclaration()
550 ObjCMethodDecl *Redecl = 0; in getNextRedeclaration()
552 Redecl = const_cast<ObjCMethodDecl*>(Ctx.getObjCMethodRedeclaration(this)); in getNextRedeclaration()
586 ObjCMethodDecl *ObjCMethodDecl::getCanonicalDecl() { in getCanonicalDecl()
591 if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(), in getCanonicalDecl()
598 if (ObjCMethodDecl *MD = CatD->getMethod(getSelector(), in getCanonicalDecl()
610 SourceLocation ObjCMethodDecl::getLocEnd() const { in getLocEnd()
616 ObjCMethodFamily ObjCMethodDecl::getMethodFamily() const { in getMethodFamily()
679 ObjCMethodDecl::arg_type_iterator it = arg_type_begin(); in getMethodFamily()
704 void ObjCMethodDecl::createImplicitParams(ASTContext &Context, in createImplicitParams()
762 ObjCInterfaceDecl *ObjCMethodDecl::getClassInterface() { in getClassInterface()
775 const ObjCMethodDecl *Method, in CollectOverriddenMethodsRecurse()
776 SmallVectorImpl<const ObjCMethodDecl *> &Methods, in CollectOverriddenMethodsRecurse()
789 if (ObjCMethodDecl * in CollectOverriddenMethodsRecurse()
807 if (const ObjCMethodDecl * in CollectOverriddenMethodsRecurse()
846 const ObjCMethodDecl *Method, in CollectOverriddenMethods()
847 SmallVectorImpl<const ObjCMethodDecl *> &Methods) { in CollectOverriddenMethods()
852 static void collectOverriddenMethodsSlow(const ObjCMethodDecl *Method, in collectOverriddenMethodsSlow()
853 SmallVectorImpl<const ObjCMethodDecl *> &overridden) { in collectOverriddenMethodsSlow()
867 if (const ObjCMethodDecl *IFaceMeth = ID->getMethod(Method->getSelector(), in collectOverriddenMethodsSlow()
879 if (const ObjCMethodDecl *IFaceMeth = ID->getMethod(Method->getSelector(), in collectOverriddenMethodsSlow()
894 const ObjCMethodDecl *Method, in collectOnCategoriesAfterLocation()
895 SmallVectorImpl<const ObjCMethodDecl *> &Methods) { in collectOnCategoriesAfterLocation()
921 const ObjCMethodDecl *Method, in collectOverriddenMethodsFast()
922 SmallVectorImpl<const ObjCMethodDecl *> &Methods) { in collectOverriddenMethodsFast()
937 void ObjCMethodDecl::getOverriddenMethods( in getOverriddenMethods()
938 SmallVectorImpl<const ObjCMethodDecl *> &Overridden) const { in getOverriddenMethods()
939 const ObjCMethodDecl *Method = this; in getOverriddenMethods()
957 ObjCMethodDecl::findPropertyDecl(bool CheckOverrides) const { in findPropertyDecl()
990 typedef SmallVector<const ObjCMethodDecl *, 8> OverridesTy; in findPropertyDecl()
1198 ObjCMethodDecl *
1205 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel)) in getCategoryInstanceMethod()
1212 ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const { in getCategoryClassMethod()
1218 if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel)) in getCategoryClassMethod()
1417 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod()
1419 ObjCMethodDecl *MethodDecl = NULL; in lookupMethod()