Searched refs:packageAndVersion (Results 1 – 2 of 2) sorted by relevance
103 static std::string packageWithoutVersion(const std::string& packageAndVersion) { in packageWithoutVersion() argument104 size_t at = packageAndVersion.find('@'); in packageWithoutVersion()105 if (at == std::string::npos) return packageAndVersion; in packageWithoutVersion()106 return packageAndVersion.substr(0, at); in packageWithoutVersion()351 std::string packageAndVersion = fqName.substr(0, idx); in openLibs() local354 const std::string prefix = packageAndVersion + "-impl"; in openLibs()
365 const auto& packageAndVersion = splitFirst(getPackageAndVersion(entry.interfaceName), '@'); in addEntryWithoutInstance() local366 const auto& package = packageAndVersion.first; in addEntryWithoutInstance()368 if (!vintf::parse(packageAndVersion.second, &version)) { in addEntryWithoutInstance()369 err() << "Warning: Cannot parse version '" << packageAndVersion.second << "' for entry '" in addEntryWithoutInstance()