Home
last modified time | relevance | path

Searched refs:manifestPath (Results 1 – 12 of 12) sorted by relevance

/third_party/typescript/src/jsTyping/
DjsTyping.ts223 const manifestPath = combinePaths(projectRootPath, manifestName); constant
226 if (host.fileExists(manifestPath)) {
227 filesToWatch.push(manifestPath);
228 manifest = readConfigFile(manifestPath, path => host.readFile(path)).config;
230 … addInferredTypings(manifestTypingNames, `Typing names in '${manifestPath}' dependencies`);
263 .filter(manifestPath => {
264 if (getBaseFileName(manifestPath) !== manifestName) {
272 const pathComponents = getPathComponents(normalizePath(manifestPath));
283 for (const manifestPath of dependencyManifestNames) { constant
284 const normalizedFileName = normalizePath(manifestPath);
/third_party/node/test/pummel/
Dtest-policy-integrity-parent-no-package-json.js110 const manifestPath = path.join(configDirPath, policyPath);
124 fs.writeFileSync(manifestPath, manifestBody);
Dtest-policy-integrity-worker-no-package-json.js127 const manifestPath = path.join(configDirPath, policyPath);
141 fs.writeFileSync(manifestPath, manifestBody);
Dtest-policy-integrity-worker-commonjs.js127 const manifestPath = path.join(configDirPath, policyPath);
141 fs.writeFileSync(manifestPath, manifestBody);
Dtest-policy-integrity-worker-module.js127 const manifestPath = path.join(configDirPath, policyPath);
141 fs.writeFileSync(manifestPath, manifestBody);
Dtest-policy-integrity-parent-module.js110 const manifestPath = path.join(configDirPath, policyPath);
124 fs.writeFileSync(manifestPath, manifestBody);
Dtest-policy-integrity-dep.js109 const manifestPath = path.join(configDirPath, policyPath);
123 fs.writeFileSync(manifestPath, manifestBody);
Dtest-policy-integrity-parent-commonjs.js110 const manifestPath = path.join(configDirPath, policyPath);
124 fs.writeFileSync(manifestPath, manifestBody);
/third_party/vk-gl-cts/scripts/android/
Dinstall_apk.py162 manifestPath = os.path.join(DEQP_DIR, "android", package.appDirName, "AndroidManifest.xml")
164 return parsePackageName(manifestPath)
Dbuild_apk.py398 def parsePackageName (manifestPath): argument
399 tree = xml.etree.ElementTree.parse(manifestPath)
402 raise Exception("'package' attribute missing from root element in %s" % manifestPath)
419 manifestPath = resolvePath(config, self.getManifestPath())
421 return parsePackageName(manifestPath)
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs23563 const manifestPath = require.resolve("corepack/package.json");
23564 … const distFolder = import_path5.default.join(import_path5.default.dirname(manifestPath), `dist`);
23678 const manifestPath = import_path6.default.join(currCwd, `package.json`);
23681 content = await import_fs7.default.promises.readFile(manifestPath, `utf8`);
23693 …w UsageError(`Invalid package.json in ${import_path6.default.relative(initialCwd, manifestPath)}`);
23694 selection = { data, manifestPath };
23700 return { type: `NoSpec`, target: selection.manifestPath };
23703 target: selection.manifestPath,
23704 spec: parseSpec(rawPmSpec, import_path6.default.relative(initialCwd, selection.manifestPath))
/third_party/typescript/lib/
DtypingsInstaller.js131814 var manifestPath = ts.combinePaths(projectRootPath, manifestName);
131817 if (host.fileExists(manifestPath)) {
131818 filesToWatch.push(manifestPath);
131819 …manifest = ts.readConfigFile(manifestPath, function (path) { return host.readFile(path); }).config;
131821 …addInferredTypings(manifestTypingNames, "Typing names in '".concat(manifestPath, "' dependencies")…
131850 .filter(function (manifestPath) { argument
131851 if (ts.getBaseFileName(manifestPath) !== manifestName) {
131859 var pathComponents = ts.getPathComponents(ts.normalizePath(manifestPath));