Lines Matching refs:package
52 auto package = val.substr(0, index); in addPackageRootToMap() local
55 packageRootPaths[package] = path; in addPackageRootToMap()
74 const std::string &package, in applyPackageRootPath() argument
77 auto index = package.find_first_of('@'); in applyPackageRootPath()
80 auto packagePath = package.substr(0, index); in applyPackageRootPath()
81 auto packageVersion = package.substr(index + 1); in applyPackageRootPath()
102 CHECK(!outputPath.empty()) << "No package root path provided for: " << package; in applyPackageRootPath()
116 std::string package; in main() local
129 package = optarg; in main()
165 applyPackageRootPath(packageRootPaths, package, outputDir); in main()
167 if (package.empty()) { in main()
184 AST ast(path, outputDir, package, isOpenGl); in main()