Home
last modified time | relevance | path

Searched refs:normalizePath (Results 1 – 25 of 47) sorted by relevance

12

/third_party/node/deps/npm/node_modules/node-gyp/lib/
Dprocess-release.js113 libPath: normalizePath(path.relative(url.parse(baseUrl).path, url.parse(libUrl32).path))
117 libPath: normalizePath(path.relative(url.parse(baseUrl).path, url.parse(libUrl64).path))
121 libPath: normalizePath(path.relative(url.parse(baseUrl).path, url.parse(libUrlArm64).path))
126 function normalizePath (p) { function
/third_party/node/deps/npm/node_modules/aws4/
Daws4.js207 normalizePath = this.service !== 's3',
231 if (normalizePath) pathStr = pathStr.replace(/\/{2,}/g, '/')
233 if (normalizePath && piece === '..') {
235 } else if (!normalizePath || piece !== '.') {
/third_party/node/deps/npm/node_modules/registry-auth-token/
Dindex.js48 parsed.pathname = url.resolve(normalizePath(pathname), '..') || '/'
64 function normalizePath (path) { function
/third_party/typescript/src/compiler/
DmoduleNameResolver.ts153 const path = normalizePath(combinePaths(baseDirectory, fileName));
273 forEachAncestorDirectory(normalizePath(currentDirectory), directory => {
425 const normalized = normalizePath(typeDirectivePath);
828 const candidate = normalizePath(combinePaths(containingDirectory, moduleName));
836 let normalizedRoot = normalizePath(rootDir);
877 const candidate = combinePaths(normalizePath(rootDir), suffix);
902 const candidate = normalizePath(combinePaths(baseUrl, moduleName));
992 const real = normalizePath(host.realpath(path));
1059 const path = normalizePath(resolved.path);
1346 const candidate = normalizePath(combinePaths(nodeModulesDirectory, moduleName));
[all …]
Dpath.ts527 return normalizePath(some(paths) ? combinePaths(path, ...paths) : normalizeSlashes(path));
548 export function normalizePath(path: string): string { function
565 ? normalizePath(fileName)
DcommandLineParser.ts2419 …const basePathForFileNames = normalizePath(configFileName ? directoryOfCombinedPath(configFileName…
3074 basePath = normalizePath(basePath);
3167 basePath = normalizePath(basePath);
3201 …ePattern = getRegularExpressionForWildcard(excludeSpecs, combinePaths(normalizePath(currentDirecto…
3257 const spec = normalizePath(combinePaths(path, file));
DwatchUtilities.ts77 return getBaseFileName(normalizePath(fileName));
Dsys.ts673 …gnoredPath(childFullName, options) && filePathComparer(childFullName, normalizePath(realpath(child…
769 …const fileName = !relativeFileName ? directoryName : normalizePath(combinePaths(directoryName, rel…
DmoduleSpecifiers.ts438 const pattern = removeFileExtension(normalizePath(patternText));
Dwatch.ts524 …const getDefaultLibLocation = memoize(() => getDirectoryPath(normalizePath(system.getExecutingFile…
DresolutionCache.ts483 …failedLookupLocation = isRootedDiskPath(failedLookupLocation) ? normalizePath(failedLookupLocation…
/third_party/typescript/src/services/
DstringCompletions.ts354 …rootDirs = rootDirs.map(rootDirectory => normalizePath(isRootedDiskPath(rootDirectory) ? rootDirec…
417 filePath = normalizePath(filePath);
436 const directoryName = getBaseFileName(normalizePath(directory));
493 const absolute = normalizePath(combinePaths(projectDir, baseUrl));
576 const normalizedSuffix = normalizePath(parsed.suffix);
578 const baseDirectory = normalizePath(combinePaths(baseUrl, expandedPrefixDirectory));
598 const inner = withoutStartAndEnd(normalizePath(path), completePrefix, normalizedSuffix);
Dtranspile.ts69 … getSourceFile: (fileName) => fileName === normalizePath(inputFileName) ? sourceFile : undefined,
DgetEditsForFileRename.ts167 return normalizePath(combinePaths(pathA, pathB));
/third_party/typescript/src/jsTyping/
DjsTyping.ts125 const path = normalizePath(fileName);
257 const normalizedFileName = normalizePath(fileName);
/third_party/typescript/src/server/
DutilitiesPublic.ts63 return <NormalizedPath>normalizePath(fileName);
/third_party/typescript/src/executeCommandLine/
DexecuteCommandLine.ts251 const fileOrDirectory = normalizePath(commandLine.options.project);
268 const searchPath = normalizePath(sys.getCurrentDirectory());
274 …cs.Cannot_find_a_tsconfig_json_file_at_the_current_directory_Colon_0, normalizePath(sys.getCurrent…
788 const file = normalizePath(combinePaths(currentDirectory, "tsconfig.json"));
/third_party/typescript/src/testRunner/
Dtest262Runner.ts94 …er.basePath, Test262BaselineRunner.testFileExtensionRegex, { recursive: true }), ts.normalizePath);
DprojectsRunner.ts137 … configFileName = ts.normalizePath(ts.combinePaths(this.compilerOptions.project, "tsconfig.json"));
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/
DEJDB2DBModule.java41 String path = normalizePath(path_); in openImpl()
243 private String normalizePath(String path) { in normalizePath() method in EJDB2DBModule
/third_party/typescript/src/testRunner/unittests/
DmoduleResolution.ts106 …failedLookupLocations.push(normalizePath(getRootLength(moduleName) === 0 ? combinePaths(dir, modul…
482 const path = normalizePath(combinePaths(currentDirectory, fileName));
494 const path = normalizePath(combinePaths(currentDirectory, fileName));
577 … const path = getCanonicalFileName(normalizePath(combinePaths(currentDirectory, fileName)));
589 … const path = getCanonicalFileName(normalizePath(combinePaths(currentDirectory, fileName)));
/third_party/typescript/src/harness/
DvpathUtil.ts9 export import normalize = ts.normalizePath;
DloggedIO.ts337 const normalizedPath = ts.normalizePath(path).toLowerCase();
407 const normalizedName = ts.normalizePath(expectedPath).toLowerCase();
DfourslashImpl.ts258 const baseDirectory = ts.normalizePath(ts.getDirectoryPath(file.fileName));
279 const baseDir = ts.normalizePath(ts.getDirectoryPath(configFileName));
3326 fileNames = ts.map(fileNames, ts.normalizePath);
3336 …const expectedRangesInFile = expectedRanges.filter(r => ts.normalizePath(r.fileName) === fileName);
3792 name = ts.normalizePath(name);
3798 const fn = ts.normalizePath(file.fileName);
/third_party/ejdb/src/bindings/ejdb2_flutter/android/src/main/java/com/softmotions/ejdb2/
DEjdb2FlutterPlugin.java381 String path = normalizePath(mc.getAppContext(), (String) mc.args[1]); in open()
481 private static String normalizePath(Context ctx, String path) { in normalizePath() method in Ejdb2FlutterPlugin

12