Searched refs:manifestPath (Results 1 – 12 of 12) sorted by relevance
/third_party/typescript/src/jsTyping/ |
D | jsTyping.ts | 223 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/ |
D | test-policy-integrity-parent-no-package-json.js | 110 const manifestPath = path.join(configDirPath, policyPath); 124 fs.writeFileSync(manifestPath, manifestBody);
|
D | test-policy-integrity-worker-no-package-json.js | 127 const manifestPath = path.join(configDirPath, policyPath); 141 fs.writeFileSync(manifestPath, manifestBody);
|
D | test-policy-integrity-worker-commonjs.js | 127 const manifestPath = path.join(configDirPath, policyPath); 141 fs.writeFileSync(manifestPath, manifestBody);
|
D | test-policy-integrity-worker-module.js | 127 const manifestPath = path.join(configDirPath, policyPath); 141 fs.writeFileSync(manifestPath, manifestBody);
|
D | test-policy-integrity-parent-module.js | 110 const manifestPath = path.join(configDirPath, policyPath); 124 fs.writeFileSync(manifestPath, manifestBody);
|
D | test-policy-integrity-dep.js | 109 const manifestPath = path.join(configDirPath, policyPath); 123 fs.writeFileSync(manifestPath, manifestBody);
|
D | test-policy-integrity-parent-commonjs.js | 110 const manifestPath = path.join(configDirPath, policyPath); 124 fs.writeFileSync(manifestPath, manifestBody);
|
/third_party/vk-gl-cts/scripts/android/ |
D | install_apk.py | 162 manifestPath = os.path.join(DEQP_DIR, "android", package.appDirName, "AndroidManifest.xml") 164 return parsePackageName(manifestPath)
|
D | build_apk.py | 398 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/ |
D | corepack.cjs | 23563 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/ |
D | typingsInstaller.js | 131814 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));
|