/third_party/node/deps/npm/node_modules/glob/dist/mjs/ |
D | processor.js | 33 add(target, absolute, ifDir) { argument 34 const n = (absolute ? 2 : 0) | (ifDir ? 1 : 0); 112 const absolute = pattern.isAbsolute() && this.opts.absolute !== false; 156 this.matches.add(t.resolve(p), absolute, ifDir); 179 this.matches.add(t, absolute, rp === '' || rp === '.'); 189 this.matches.add(tp, absolute, true); 218 const absolute = pattern.isAbsolute(); 222 results.testGlobstar(e, pattern, rest, absolute); 225 results.testRegExp(e, p, rest, absolute); 228 results.testString(e, p, rest, absolute); [all …]
|
D | walker.js | 120 matchFinish(e, absolute) { argument 123 const abs = this.opts.absolute === undefined ? absolute : this.opts.absolute; 142 async match(e, absolute, ifDir) { argument 145 this.matchFinish(p, absolute); 147 matchSync(e, absolute, ifDir) { argument 150 this.matchFinish(p, absolute); 177 for (const [m, absolute, ifDir] of processor.matches.entries()) { 181 this.match(m, absolute, ifDir).then(() => next()); 204 for (const [m, absolute, ifDir] of processor.matches.entries()) { 208 this.match(m, absolute, ifDir).then(() => next()); [all …]
|
D | ignore.js | 18 absolute; field in Ignore 22 this.absolute = []; property 56 const absolute = p.isAbsolute(); 57 if (absolute) 58 this.absolute.push(m); 62 if (absolute) 79 for (const m of this.absolute) {
|
D | processor.d.ts | 22 add(target: Path, absolute: boolean, ifDir: boolean): void; 55 testGlobstar(e: Path, pattern: Pattern, rest: Pattern | null, absolute: boolean): void; 56 testRegExp(e: Path, p: MMRegExp, rest: Pattern | null, absolute: boolean): void; 57 testString(e: Path, p: string, rest: Pattern | null, absolute: boolean): void;
|
D | walker.d.ts | 14 absolute?: boolean; property 72 matchFinish(e: Path, absolute: boolean): void; 73 match(e: Path, absolute: boolean, ifDir: boolean): Promise<void>; 74 matchSync(e: Path, absolute: boolean, ifDir: boolean): void;
|
D | glob.js | 17 absolute; field in Glob 81 this.absolute = opts.absolute; 88 if (this.withFileTypes && this.absolute !== undefined) {
|
D | glob.d.ts | 36 absolute?: boolean; property 253 absolute?: undefined; 270 absolute?: boolean;
|
D | processor.js.map | 1 …absolute or relative path should be returned.\n */\nexport class MatchRecord {\n store: Map<Path,…
|
/third_party/node/deps/npm/node_modules/glob/dist/cjs/src/ |
D | processor.js | 37 add(target, absolute, ifDir) { argument 38 const n = (absolute ? 2 : 0) | (ifDir ? 1 : 0); 118 const absolute = pattern.isAbsolute() && this.opts.absolute !== false; 162 this.matches.add(t.resolve(p), absolute, ifDir); 185 this.matches.add(t, absolute, rp === '' || rp === '.'); 195 this.matches.add(tp, absolute, true); 224 const absolute = pattern.isAbsolute(); 228 results.testGlobstar(e, pattern, rest, absolute); 231 results.testRegExp(e, p, rest, absolute); 234 results.testString(e, p, rest, absolute); [all …]
|
D | walker.js | 123 matchFinish(e, absolute) { argument 126 const abs = this.opts.absolute === undefined ? absolute : this.opts.absolute; 145 async match(e, absolute, ifDir) { argument 148 this.matchFinish(p, absolute); 150 matchSync(e, absolute, ifDir) { argument 153 this.matchFinish(p, absolute); 180 for (const [m, absolute, ifDir] of processor.matches.entries()) { 184 this.match(m, absolute, ifDir).then(() => next()); 207 for (const [m, absolute, ifDir] of processor.matches.entries()) { 211 this.match(m, absolute, ifDir).then(() => next()); [all …]
|
D | ignore.js | 21 absolute; field in Ignore 25 this.absolute = []; property 59 const absolute = p.isAbsolute(); 60 if (absolute) 61 this.absolute.push(m); 65 if (absolute) 82 for (const m of this.absolute) {
|
D | processor.d.ts | 22 add(target: Path, absolute: boolean, ifDir: boolean): void; 55 testGlobstar(e: Path, pattern: Pattern, rest: Pattern | null, absolute: boolean): void; 56 testRegExp(e: Path, p: MMRegExp, rest: Pattern | null, absolute: boolean): void; 57 testString(e: Path, p: string, rest: Pattern | null, absolute: boolean): void;
|
D | walker.d.ts | 14 absolute?: boolean; property 72 matchFinish(e: Path, absolute: boolean): void; 73 match(e: Path, absolute: boolean, ifDir: boolean): Promise<void>; 74 matchSync(e: Path, absolute: boolean, ifDir: boolean): void;
|
D | glob.js | 20 absolute; field in Glob 84 this.absolute = opts.absolute; 91 if (this.withFileTypes && this.absolute !== undefined) {
|
D | glob.d.ts | 36 absolute?: boolean; property 253 absolute?: undefined; 270 absolute?: boolean;
|
D | processor.js.map | 1 …absolute or relative path should be returned.\n */\nexport class MatchRecord {\n store: Map<Path,…
|
/third_party/node/deps/npm/node_modules/tar/lib/ |
D | unpack.js | 281 entry.absolute = normPath(path.resolve(entry.path)) 283 entry.absolute = normPath(path.resolve(this.cwd, entry.path)) 291 entry.absolute.indexOf(this.cwd + '/') !== 0 && 292 entry.absolute !== this.cwd) { 296 resolvedPath: entry.absolute, 304 if (entry.absolute === this.cwd && 312 const { root: aRoot } = path.win32.parse(entry.absolute) 313 entry.absolute = aRoot + wc.encode(entry.absolute.slice(aRoot.length)) 326 assert.equal(typeof entry.absolute, 'string') 402 const stream = new fsm.WriteStream(entry.absolute, { [all …]
|
D | pack.js | 13 constructor (path, absolute) { argument 15 this.absolute = absolute 144 const absolute = normPath(path.resolve(this.cwd, p.path)) constant 149 const job = new PackJob(p.path, absolute, false) 160 const absolute = normPath(path.resolve(this.cwd, p)) constant 161 this[QUEUE].push(new PackJob(p, absolute)) 169 fs[stat](job.absolute, (er, stat) => { 181 this.statCache.set(job.absolute, stat) 195 fs.readdir(job.absolute, (er, entries) => { 206 this.readdirCache.set(job.absolute, entries) [all …]
|
D | write-entry.js | 304 er.path = this.absolute 312 er.path = this.absolute 350 er.path = this.absolute 381 this[ONLSTAT](fs.lstatSync(this.absolute)) 385 this[ONREADLINK](fs.readlinkSync(this.absolute)) 389 this[ONOPENFILE](fs.openSync(this.absolute, 'r'))
|
/third_party/gn/src/gn/ |
D | function_get_path_info.cc | 174 The full absolute path name to the file or directory. It will be resolved 175 relative to the current directory, and then the source- absolute version 176 will be returned. If the input is system- absolute, the same input will 180 "//foo/bar" => "//foo/bar" (already absolute) 181 "/usr/include" => "/usr/include" (already absolute) 184 system-absolute, see rebase_path(). 194 # Extract the source-absolute directory name,
|
D | function_rebase_path.cc | 146 it can't also generate source-absolute paths without more special-cases. 152 can be relative paths ("foo/bar.txt"), system absolute paths 153 ("/foo/bar.txt"), or source absolute paths ("//foo/bar.txt"). 157 absolute path or a relative path (which will be treated as being relative 173 a list of strings). All relative and source-absolute file names will be 174 converted to be relative to the requested output System-absolute paths will 190 # Convert a file to be system absolute:
|
/third_party/libinput/doc/user/ |
D | absolute-axes.rst | 7 Devices with absolute axes are those that send positioning data for an axis in 12 libinput supports three types of devices with absolute axes: 18 Touchpads are technically absolute devices but libinput converts the axis values 20 as absolute devices in libinput. 22 For all absolute devices in libinput, the default unit for x/y coordinates is 32 Handling of absolute coordinates 35 In most use-cases, absolute input devices are mapped to a single screen. For 56 An absolute device that does not provide a valid resolution is considered 59 (touchpads are not absolute devices, as mentioned above). 64 Calibration of absolute devices
|
/third_party/skia/third_party/externals/oboe/docs/reference/search/ |
D | search.css | 20 position:absolute; 30 position:absolute; 45 position:absolute; 64 position:absolute; 75 position: absolute; 100 position: absolute; 163 position: absolute;
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
D | codegen.c | 139 f->reg.absolute = src->absolute; in ppir_codegen_encode_varying() 283 f->arg0_absolute = src->absolute; in ppir_codegen_encode_vec_mul() 291 f->arg1_absolute = src->absolute; in ppir_codegen_encode_vec_mul() 354 f->arg0_absolute = src->absolute; in ppir_codegen_encode_scl_mul() 360 f->arg1_absolute = src->absolute; in ppir_codegen_encode_scl_mul() 442 f->arg0_absolute = src->absolute; in ppir_codegen_encode_vec_add() 449 f->arg1_absolute = src->absolute; in ppir_codegen_encode_vec_add() 520 f->arg0_absolute = src->absolute; in ppir_codegen_encode_scl_add() 525 f->arg1_absolute = src->absolute; in ppir_codegen_encode_scl_add() 555 f->scalar.arg0_absolute = src->absolute; in ppir_codegen_encode_combine()
|
/third_party/gstreamer/gstplugins_base/gst/subparse/ |
D | qttextparse.c | 42 gboolean absolute; member 68 context->absolute = TRUE; in qttext_context_init() 281 context->absolute = FALSE; in qttext_parse_tag() 285 context->absolute = TRUE; in qttext_parse_tag() 424 if (context->absolute) in parse_qttext() 435 if (context->absolute) in parse_qttext()
|