Lines Matching refs:CatDecl
2392 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2393 if (CatDecl->IsClassExtension()) in ProcessPropertyDecl()
2394 GetterMethod = IsClassProperty ? CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2396 CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2403 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) in ProcessPropertyDecl() local
2404 if (CatDecl->IsClassExtension()) in ProcessPropertyDecl()
2405 SetterMethod = IsClassProperty ? CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2407 CatDecl->getClassInterface()-> in ProcessPropertyDecl()
2415 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) { in ProcessPropertyDecl() local
2416 auto *ExistingGetter = CatDecl->getClassInterface()->lookupMethod( in ProcessPropertyDecl()
2417 property->getGetterName(), !IsClassProperty, true, false, CatDecl); in ProcessPropertyDecl()
2431 if (const ObjCCategoryDecl *CatDecl = dyn_cast<ObjCCategoryDecl>(CD)) { in ProcessPropertyDecl() local
2432 auto *ExistingSetter = CatDecl->getClassInterface()->lookupMethod( in ProcessPropertyDecl()
2433 property->getSetterName(), !IsClassProperty, true, false, CatDecl); in ProcessPropertyDecl()