Lines Matching defs:factory
33 CORE_LOG_E("ClassRegistry: Cannot unregister a null object factory");
51 CORE_LOG_E("ClassRegistry: Cannot register a null object factory");
90 const auto& factory = v.second;
91 if (excludeDeprecated && (factory->GetClassInfo().category & ObjectCategoryBits::DEPRECATED)) {
95 if (CheckCategoryBits(factory->GetClassInfo().category, category, strict)) {
96 infos.emplace_back(factory);
108 const auto& factory = v.second;
109 if (factory->GetClassInfo().category & ObjectCategoryBits::INTERNAL) {
113 if (excludeDeprecated && (factory->GetClassInfo().category & ObjectCategoryBits::DEPRECATED)) {
117 if (CheckInterfaces(factory->GetClassInterfaces(), interfaceUids, strict)) {
118 infos.push_back(factory);