Lines Matching refs:resolvedPath
623 const resolvedPath = win32.resolve(path);
625 if (resolvedPath.length <= 2)
628 if (StringPrototypeCharCodeAt(resolvedPath, 0) === CHAR_BACKWARD_SLASH) {
630 if (StringPrototypeCharCodeAt(resolvedPath, 1) === CHAR_BACKWARD_SLASH) {
631 const code = StringPrototypeCharCodeAt(resolvedPath, 2);
634 return `\\\\?\\UNC\\${StringPrototypeSlice(resolvedPath, 2)}`;
638 isWindowsDeviceRoot(StringPrototypeCharCodeAt(resolvedPath, 0)) &&
639 StringPrototypeCharCodeAt(resolvedPath, 1) === CHAR_COLON &&
640 StringPrototypeCharCodeAt(resolvedPath, 2) === CHAR_BACKWARD_SLASH
643 return `\\\\?\\${resolvedPath}`;
1092 let resolvedPath = '';
1104 resolvedPath = `${path}/${resolvedPath}`;
1113 resolvedPath = normalizeString(resolvedPath, !resolvedAbsolute, '/',
1117 return `/${resolvedPath}`;
1119 return resolvedPath.length > 0 ? resolvedPath : '.';