Lines Matching refs:CatDecl
2389 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2390 if (CatDecl->IsClassExtension()) in ProcessPropertyDecl()
2391 GetterMethod = IsClassProperty ? CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2393 CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2400 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2401 if (CatDecl->IsClassExtension()) in ProcessPropertyDecl()
2402 SetterMethod = IsClassProperty ? CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2404 CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2412 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) { in ProcessPropertyDecl() local
2413 auto *ExistingGetter = CatDecl->getClassInterface()->lookupMethod( in ProcessPropertyDecl()
2414 property->getGetterName(), !IsClassProperty, true, false, CatDecl); in ProcessPropertyDecl()
2428 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) { in ProcessPropertyDecl() local
2429 auto *ExistingSetter = CatDecl->getClassInterface()->lookupMethod( in ProcessPropertyDecl()
2430 property->getSetterName(), !IsClassProperty, true, false, CatDecl); in ProcessPropertyDecl()