Lines Matching defs:path
62 Register("-f", 1, "config path <path>");
83 Register("-pages", 1, "Set project's router config file path.");
84 Register("-hsp", 1, "Set container sdk path.");
92 Register("-ljPath", 1, "Set loader.json path for Previewer");
324 errorInfo = std::string("No app path specified.");
328 std::string path = Value("j");
329 if (!FileSystem::IsDirectoryExists(path)) {
330 errorInfo = std::string("Js app path not exist.");
458 std::string path = Value("f");
459 if (!FileSystem::IsFileExists(path)) {
460 errorInfo = std::string("The configuration file path does not exist.");
464 configPath = path;
474 std::string path = Value("arp");
475 if (!FileSystem::IsDirectoryExists(path)) {
476 errorInfo = std::string("The configuration appResource path does not exist.");
480 appResourcePath = path;
756 std::string path = Value("hsp");
757 if (!FileSystem::IsDirectoryExists(path)) {
758 errorInfo = std::string("The container sdk path does not exist.");
762 containerSdkPath = path;
848 std::string path = Value("abp");
849 if (path.empty()) {
850 errorInfo = std::string("The ability path is empty.");
854 abilityPath = path;
990 std::string path = Value("ljPath");
991 if (!FileSystem::IsFileExists(path)) {
992 errorInfo = std::string("The configuration loader.json path does not exist.");
996 loaderJsonPath = path;