/third_party/node/test/parallel/ |
D | test-path-isabsolute.js | 6 assert.strictEqual(path.win32.isAbsolute('/'), true); 7 assert.strictEqual(path.win32.isAbsolute('//'), true); 8 assert.strictEqual(path.win32.isAbsolute('//server'), true); 9 assert.strictEqual(path.win32.isAbsolute('//server/file'), true); 10 assert.strictEqual(path.win32.isAbsolute('\\\\server\\file'), true); 11 assert.strictEqual(path.win32.isAbsolute('\\\\server'), true); 12 assert.strictEqual(path.win32.isAbsolute('\\\\'), true); 13 assert.strictEqual(path.win32.isAbsolute('c'), false); 14 assert.strictEqual(path.win32.isAbsolute('c:'), false); 15 assert.strictEqual(path.win32.isAbsolute('c:\\'), true); [all …]
|
D | test-path-zero-length-strings.js | 28 assert.strictEqual(path.posix.isAbsolute(''), false); 29 assert.strictEqual(path.win32.isAbsolute(''), false);
|
/third_party/node/deps/npm/node_modules/glob/dist/cjs/src/ |
D | pattern.js | 22 #isAbsolute; field in Pattern 67 else if (this.isDrive() || this.isAbsolute()) { 114 ? this.isAbsolute() 134 this.#rest.#isAbsolute = this.#isAbsolute; 181 isAbsolute() { method in Pattern 183 return this.#isAbsolute !== undefined 184 ? this.#isAbsolute 185 : (this.#isAbsolute = 195 return typeof p === 'string' && this.isAbsolute() && this.#index === 0
|
D | pattern.js.map | 1 …isAbsolute?: boolean\n #followGlobstar: boolean = true\n\n constructor(\n patternList: MMPatt…
|
D | pattern.d.ts | 62 isAbsolute(): boolean;
|
/third_party/node/deps/npm/node_modules/glob/dist/mjs/ |
D | pattern.js | 19 #isAbsolute; field in Pattern 64 else if (this.isDrive() || this.isAbsolute()) { 111 ? this.isAbsolute() 131 this.#rest.#isAbsolute = this.#isAbsolute; 178 isAbsolute() { method in Pattern 180 return this.#isAbsolute !== undefined 181 ? this.#isAbsolute 182 : (this.#isAbsolute = 192 return typeof p === 'string' && this.isAbsolute() && this.#index === 0
|
D | pattern.js.map | 1 …isAbsolute?: boolean\n #followGlobstar: boolean = true\n\n constructor(\n patternList: MMPatt…
|
D | pattern.d.ts | 62 isAbsolute(): boolean;
|
/third_party/node/lib/ |
D | path.js | 196 let isAbsolute = false; 204 isAbsolute = true; 211 isAbsolute = true; 258 isAbsolute = true; 280 resolvedAbsolute = isAbsolute; 281 if (isAbsolute && resolvedDevice.length > 0) { 311 let isAbsolute = false; 325 isAbsolute = true; 378 isAbsolute = true; 385 !isAbsolute, '\\', isPathSeparator) : [all …]
|
/third_party/node/deps/npm/node_modules/tar/lib/ |
D | strip-absolute-path.js | 2 const { isAbsolute, parse } = require('path').win32 14 while (isAbsolute(path) || parsed.root) {
|
/third_party/node/doc/api/ |
D | path.md | 270 ## `path.isAbsolute(path)` 279 The `path.isAbsolute()` method determines if `path` is an absolute path. 286 path.isAbsolute('/foo/bar'); // true 287 path.isAbsolute('/baz/..'); // true 288 path.isAbsolute('qux/'); // false 289 path.isAbsolute('.'); // false 295 path.isAbsolute('//server'); // true 296 path.isAbsolute('\\\\server'); // true 297 path.isAbsolute('C:/foo/..'); // true 298 path.isAbsolute('C:\\foo\\..'); // true [all …]
|
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/glob/ |
D | sync.js | 11 var isAbsolute = require('path-is-absolute') variable 112 else if (isAbsolute(prefix) || 113 isAbsolute(pattern.map(function (p) { 116 if (!prefix || !isAbsolute(prefix)) 399 if (prefix && isAbsolute(prefix) && !this.nomount) {
|
D | glob.js | 50 var isAbsolute = require('path-is-absolute') variable 345 else if (isAbsolute(prefix) || 346 isAbsolute(pattern.map(function (p) { 349 if (!prefix || !isAbsolute(prefix)) 466 var abs = isAbsolute(e) ? e : this._makeAbs(e) 690 if (prefix && isAbsolute(prefix) && !this.nomount) {
|
/third_party/node/deps/npm/node_modules/rimraf/node_modules/glob/ |
D | sync.js | 11 var isAbsolute = require('path-is-absolute') variable 112 else if (isAbsolute(prefix) || 113 isAbsolute(pattern.map(function (p) { 116 if (!prefix || !isAbsolute(prefix)) 399 if (prefix && isAbsolute(prefix) && !this.nomount) {
|
D | glob.js | 50 var isAbsolute = require('path-is-absolute') variable 345 else if (isAbsolute(prefix) || 346 isAbsolute(pattern.map(function (p) { 349 if (!prefix || !isAbsolute(prefix)) 466 var abs = isAbsolute(e) ? e : this._makeAbs(e) 690 if (prefix && isAbsolute(prefix) && !this.nomount) {
|
/third_party/node/deps/npm/node_modules/@npmcli/fs/lib/ |
D | move-file.js | 1 const { dirname, join, resolve, relative, isAbsolute } = require('path') 54 if (isAbsolute(target)) {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/MCTargetDesc/ |
D | PPCMCExpr.cpp | 63 if (!Value.isAbsolute()) in evaluateAsConstant() 106 if (Value.isAbsolute()) { in evaluateAsRelocatableImpl()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/ |
D | JITLink.h | 126 bool isAbsolute() const { return static_cast<bool>(IsAbsolute); } in isAbsolute() function 421 return !Base->isDefined() && !Base->isAbsolute(); in isExternal() 425 bool isAbsolute() const { in isAbsolute() function 427 return !Base->isDefined() && Base->isAbsolute(); in isAbsolute() 480 assert((L == Linkage::Strong || (!Base->isAbsolute() && !Name.empty())) && in setLinkage() 490 assert((S == Scope::Default || Base->isDefined() || Base->isAbsolute()) && in setScope() 948 if (Sym.getAddressable().isAbsolute()) { in makeExternal() 963 assert(!Sym.isDefined() && !Sym.isAbsolute() && in removeExternalSymbol() 974 assert(!Sym.isDefined() && Sym.isAbsolute() && in removeAbsoluteSymbol()
|
/third_party/node/lib/internal/fs/cp/ |
D | cp-sync.js | 44 isAbsolute, 293 if (!opts.verbatimSymlinks && !isAbsolute(resolvedSrc)) { 311 if (!isAbsolute(resolvedDest)) {
|
D | cp.js | 51 isAbsolute, 327 if (!opts.verbatimSymlinks && !isAbsolute(resolvedSrc)) { 345 if (!isAbsolute(resolvedDest)) {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/ |
D | AVRMCExpr.cpp | 63 if (Value.isAbsolute()) { in evaluateAsConstant() 80 if (Value.isAbsolute()) { in evaluateAsRelocatableImpl()
|
/third_party/node/benchmark/path/ |
D | isAbsolute-win32.js | 20 win32.isAbsolute(i % 3 === 0 ? `${path}${i}` : path);
|
D | isAbsolute-posix.js | 19 posix.isAbsolute(i % 3 === 0 ? `${path}${i}` : path);
|
/third_party/node/deps/npm/node_modules/@npmcli/fs/lib/cp/ |
D | polyfill.js | 51 isAbsolute, 376 if (!isAbsolute(resolvedSrc)) { 396 if (!isAbsolute(resolvedDest)) {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCValue.cpp | 19 if (isAbsolute()) { in print()
|