Lines Matching refs:fqInstance

696         for (const auto& fqInstance : *inheritance) {  in IsInstanceDeprecated()
698 fqInstance, listInstances); in IsInstanceDeprecated()
721 const FqInstance& fqInstance) { in IsInstanceListed() argument
723 listInstances(fqInstance.getPackage(), fqInstance.getVersion(), fqInstance.getInterface(), in IsInstanceListed()
724 {fqInstance.getInstance()} /* instanceHint*/); in IsInstanceListed()
726 [&](const auto& pair) { return pair.first == fqInstance.getInstance(); }); in IsInstanceListed()
736 FqInstance fqInstance; in GetListedInstanceInheritance() local
737 if (!fqInstance.setTo(package, version.majorVer, version.minorVer, interface, instance)) { in GetListedInstanceInheritance()
742 if (!IsInstanceListed(listInstances, fqInstance)) { in GetListedInstanceInheritance()
746 const FQName& fqName = fqInstance.getFqName(); in GetListedInstanceInheritance()
749 ret.push_back(fqInstance); in GetListedInstanceInheritance()
759 if (!childFqInstance.setTo(childFqName, fqInstance.getInstance())) { in GetListedInstanceInheritance()
761 << fqInstance.getInstance() << " as FqInstance"; in GetListedInstanceInheritance()
778 const CompatibilityMatrix& targetMatrix, HalFormat format, const FqInstance& fqInstance, in IsFqInstanceDeprecated() argument
784 format, fqInstance.getPackage(), [&](const auto& targetMatrixInstance) { in IsFqInstanceDeprecated()
785 if (targetMatrixInstance.versionRange().majorVer == fqInstance.getMajorVersion() && in IsFqInstanceDeprecated()
786 targetMatrixInstance.interface() == fqInstance.getInterface() && in IsFqInstanceDeprecated()
787 targetMatrixInstance.matchInstance(fqInstance.getInstance())) { in IsFqInstanceDeprecated()
796 << fqInstance.string() << " is deprecated in compatibility matrix at FCM Version " in IsFqInstanceDeprecated()
803 listInstances(fqInstance.getPackage(), targetMatrixMinVer, fqInstance.getInterface(), in IsFqInstanceDeprecated()
804 {fqInstance.getInstance()} /* instanceHint */)) { in IsFqInstanceDeprecated()
805 if (newPair.first == fqInstance.getInstance()) { in IsFqInstanceDeprecated()
813 << fqInstance.string() << " is deprecated; requires at least " << targetMatrixMinVer; in IsFqInstanceDeprecated()