Searched refs:USERPROFILE (Results 1 – 25 of 26) sorted by relevance
12
/third_party/node/test/parallel/ |
D | test-module-loading-globalpaths.js | 51 env.HOME = env.USERPROFILE = noPkgHomeDir; 61 env.HOME = env.USERPROFILE = modHomeDir; 66 env.HOME = env.USERPROFILE = libHomeDir; 71 env.HOME = env.USERPROFILE = bothHomeDir; 84 env.HOME = env.USERPROFILE = noPkgHomeDir; 88 env.HOME = env.USERPROFILE = bothHomeDir; 92 env.HOME = env.USERPROFILE = bothHomeDir; 98 env.HOME = env.USERPROFILE = bothHomeDir;
|
D | test-os-homedir-no-envvar.js | 11 assert.strictEqual(process.env.USERPROFILE, undefined); 21 delete process.env.USERPROFILE;
|
D | test-os.js | 198 if (common.isWindows && process.env.USERPROFILE) { 199 assert.strictEqual(home, process.env.USERPROFILE); 200 delete process.env.USERPROFILE; 202 process.env.USERPROFILE = home;
|
/third_party/node/doc/api/ |
D | synopsis.md | 38 > mkdir %USERPROFILE%\projects 39 > cd %USERPROFILE%\projects 45 > mkdir $env:USERPROFILE\projects 46 > cd $env:USERPROFILE\projects
|
D | os.md | 182 On Windows, it uses the `USERPROFILE` environment variable if defined.
|
/third_party/node/deps/npm/test/tap/ |
D | unpublish-config.js | 61 USERPROFILE: process.env.USERPROFILE property
|
D | publish-config.js | 60 USERPROFILE: process.env.USERPROFILE property
|
/third_party/node/deps/npm/node_modules/os-homedir/ |
D | index.js | 10 return env.USERPROFILE || env.HOMEDRIVE + env.HOMEPATH || home || null;
|
/third_party/node/deps/npm/node_modules/rc/ |
D | index.js | 7 ? process.env.USERPROFILE
|
/third_party/mbedtls/scripts/ |
D | windows_msbuild.bat | 13 @rem If the %USERPROFILE%\Source directory exists, then running
|
/third_party/flutter/flutter/ |
D | flutter_console.bat | 38 CALL cmd /K "@echo off & cd %USERPROFILE% & echo on"
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/ |
D | common.dart | 15 ? platform.environment['USERPROFILE']
|
/third_party/openssl/doc/man3/ |
D | RAND_load_file.pod | 47 %HOME%, %USERPROFILE%, %SYSTEMROOT%, C:\
|
/third_party/typescript/src/tsserver/ |
D | nodeServer.ts | 882 process.env.USERPROFILE ||
|
/third_party/libuv/docs/src/ |
D | misc.rst | 492 checks the `USERPROFILE` environment variable using 493 `GetEnvironmentVariableW()`. If `USERPROFILE` is not set,
|
/third_party/node/lib/internal/modules/cjs/ |
D | loader.js | 1196 const homeDir = isWindows ? process.env.USERPROFILE : safeGetenv('HOME');
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a4.rst | 759 Windows now prefer :envvar:`USERPROFILE` and no longer use :envvar:`HOME`,
|
/third_party/python/Doc/library/ |
D | os.path.rst | 176 On Windows, :envvar:`USERPROFILE` will be used if set, otherwise a combination
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Path.inc | 885 const wchar_t *EnvironmentVariables[] = {L"TMP", L"TEMP", L"USERPROFILE"};
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 1385 const wchar_t *EnvironmentVariables[] = {L"TMP", L"TEMP", L"USERPROFILE"};
|
/third_party/python/Doc/whatsnew/ |
D | 3.8.rst | 1060 :func:`~os.path.expanduser` on Windows now prefers the :envvar:`USERPROFILE` 1960 * :func:`~os.path.expanduser` on Windows now prefers the :envvar:`USERPROFILE`
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 1447 if 'USERPROFILE' in os.environ: 1448 userhome = os.environ['USERPROFILE'] 10830 + with mock.patch.dict(os.environ, {"USERPROFILE": profile}):
|
/third_party/python/Doc/install/ |
D | index.rst | 795 :envvar:`USERPROFILE` then :envvar:`HOMEDRIVE` and :envvar:`HOMEPATH` will
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_ARCHIVE.md | 836 * windows: use USERPROFILE to get the user's home dir (Bert Belder)
|
/third_party/openssl/ |
D | CHANGES.md | 3732 the directories %HOME%, %USERPROFILE% and %SYSTEMROOT% in that order. If
|
12