Lines Matching refs:package

86     FQName package = FQName(root, "0.0", "");  in addPackagePath()  local
88 if (packageRoot.root.inPackage(root) || package.inPackage(packageRoot.root.package())) { in addPackagePath()
91 packageRoot.root.package() + in addPackagePath()
100 mPackageRoots.push_back({path, package}); in addPackagePath()
282 if ((*ast)->package().package() != fqName.package() || in parseOptional()
283 (*ast)->package().version() != fqName.version()) { in parseOptional()
353 CHECK(!fqName.package().empty()) << fqName.string(); in findPackageRoot()
364 if (!fqName.inPackage(it->root.package())) { in findPackageRoot()
370 << it->root.package() << " and " << ret->root.package() << ")\n"; in findPackageRoot()
402 *root = packageRoot->root.package(); in getPackageRoot()
422 std::string suffix = StringHelper::LTrim(fqName.package(), packageRoot->root.package()); in getPackagePath()
440 const FQName &package, in getPackageInterfaceFiles() argument
446 getPackagePath(package, false /* relative */, false /* sanitized */, &packagePath); in getPackageInterfaceFiles()
454 packagePath.c_str(), package.string().c_str(), path.c_str()); in getPackageInterfaceFiles()
506 const FQName &package, in appendPackageInterfacesToVector() argument
511 status_t err = getPackageInterfaceFiles(package, &fileNames); in appendPackageInterfacesToVector()
518 FQName subFQName(package.package(), package.version(), fileName); in appendPackageInterfacesToVector()
540 status_t Coordinator::isTypesOnlyPackage(const FQName& package, bool* result) const { in isTypesOnlyPackage() argument
543 status_t err = appendPackageInterfacesToVector(package, &packageInterfaces); in isTypesOnlyPackage()
624 if (fqName.package().empty() || fqName.version().empty()) { in enforceRestrictionsOnPackage()
634 FQName package = fqName.getPackageAndVersion(); in enforceRestrictionsOnPackage() local
636 if (mPackagesEnforced.find(package) != mPackagesEnforced.end()) { in enforceRestrictionsOnPackage()
643 err = enforceMinorVersionUprevs(package, enforcement); in enforceRestrictionsOnPackage()
649 err = enforceHashes(package); in enforceRestrictionsOnPackage()
656 mPackagesEnforced.insert(package); in enforceRestrictionsOnPackage()
660 status_t Coordinator::packageExists(const FQName& package, bool* result) const { in packageExists() argument
663 getPackagePath(package, false /* relative */, false /* sanitized */, &packagePath); in packageExists()
760 FQName lastFQName(prevPackage.package(), prevPackage.version(), in enforceMinorVersionUprevs()