/third_party/node/lib/internal/repl/ |
D | await.js | 26 return state.ancestors[state.ancestors.length - 2] === state.body; 70 state.ancestors[state.ancestors.length - 2].type, 143 const isNew = node !== state.ancestors[state.ancestors.length - 1]; 145 ArrayPrototypePush(state.ancestors, node); 149 ArrayPrototypePop(state.ancestors); 196 ancestors: [], property
|
/third_party/exfatprogs/lib/ |
D | exfat_fs.c | 220 struct exfat_inode **ancestors, int count, in get_ancestors() argument 248 ancestors[i] = dir; in get_ancestors() 266 ctx->ancestors, in exfat_resolve_path() 267 sizeof(ctx->ancestors) / sizeof(ctx->ancestors[0]), in exfat_resolve_path() 273 name_len = exfat_utf16_len(ctx->ancestors[i]->name, in exfat_resolve_path() 275 memcpy((char *)utf16_path, (char *)ctx->ancestors[i]->name, in exfat_resolve_path()
|
/third_party/node/deps/acorn/acorn-walk/dist/ |
D | walk.js | 38 var ancestors = []; 42 var isNew = node !== ancestors[ancestors.length - 1]; 43 if (isNew) { ancestors.push(node); } 45 if (found) { found(node, st || ancestors, ancestors); } 46 if (isNew) { ancestors.pop(); } 91 var ancestors = [], last 94 var isNew = node !== ancestors[ancestors.length - 1]; 95 if (isNew) { ancestors.push(node); } 98 callback(node, st || ancestors, ancestors, type); 101 if (isNew) { ancestors.pop(); }
|
D | walk.mjs | 32 var ancestors = []; 36 var isNew = node !== ancestors[ancestors.length - 1]; 37 if (isNew) { ancestors.push(node); } 39 if (found) { found(node, st || ancestors, ancestors); } 40 if (isNew) { ancestors.pop(); } 85 var ancestors = [], last 88 var isNew = node !== ancestors[ancestors.length - 1]; 89 if (isNew) { ancestors.push(node); } 92 callback(node, st || ancestors, ancestors, type); 95 if (isNew) { ancestors.pop(); }
|
D | walk.d.ts | 13 ancestors: Node[], 26 ancestors: Node[]
|
/third_party/node/deps/npm/test/fixtures/ |
D | merge-conflict.json | 8 ||||||| merged common ancestors 27 ||||||| merged common ancestors
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
D | template.rs | 136 let mut ancestors: Vec<_> = self.ancestors(ctx).collect(); in all_template_params() localVariable 137 ancestors.reverse(); in all_template_params() 138 ancestors in all_template_params()
|
D | item.rs | 98 fn ancestors<'a>(&self, ctx: &'a BindgenContext) -> ItemAncestorsIter<'a>; in ancestors() method 241 fn ancestors<'a>(&self, ctx: &'a BindgenContext) -> ItemAncestorsIter<'a> { in ancestors() function 247 fn ancestors<'a>(&self, ctx: &'a BindgenContext) -> ItemAncestorsIter<'a> { in ancestors() method 248 self.id().ancestors(ctx) in ancestors() 497 self.ancestors(ctx) in codegen_depth() 868 .ancestors(ctx) in real_canonical_name() 1058 .ancestors(ctx) in compute_path()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
D | validitygenerator.py | 340 ancestors = [] 345 return ancestors 347 ancestors.append(current) 828 ancestors = self.getHandleDispatchableAncestors(paramtype) 830 ancestormap[param] = ancestors 839 for ancestors in ancestormap.items(): 840 if paramtype in ancestors[1]: 841 removals.append(ancestors[0]) 851 for ancestors in list(ancestormap.values())[1:]: 852 current = [val for val in current if val in ancestors]
|
/third_party/typescript/tests/cases/compiler/ |
D | conflictMarkerDiff3Trivia1.ts | 4 ||||||| merged common ancestors
|
D | conflictMarkerDiff3Trivia2.ts | 6 ||||||| merged common ancestors
|
/third_party/typescript/tests/baselines/reference/ |
D | conflictMarkerDiff3Trivia1.js | 5 ||||||| merged common ancestors field in C
|
D | conflictMarkerDiff3Trivia1.types | 10 ||||||| merged common ancestors
|
D | conflictMarkerDiff3Trivia2.js | 7 ||||||| merged common ancestors field in C
|
D | conflictMarkerDiff3Trivia2.types | 13 ||||||| merged common ancestors
|
D | conflictMarkerDiff3Trivia1.symbols | 9 ||||||| merged common ancestors
|
D | conflictMarkerDiff3Trivia2.symbols | 11 ||||||| merged common ancestors
|
D | conflictMarkerDiff3Trivia1.errors.txt | 13 ||||||| merged common ancestors
|
D | conflictMarkerDiff3Trivia2.errors.txt | 18 ||||||| merged common ancestors
|
/third_party/node/deps/acorn/acorn-walk/ |
D | README.md | 71 Literal(_, ancestors) { 72 console.log("This literal's ancestors are:", ancestors.map(n => n.type))
|
/third_party/exfatprogs/include/ |
D | exfat_fs.h | 58 struct exfat_inode *ancestors[255]; member
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
D | consistency_tools.py | 664 for handle_type, ancestors in handle_ancestors.items(): 668 for ancestor in ancestors)
|
/third_party/python/PC/ |
D | readme.txt | 25 ancestors, if a landmark file (Lib/string.py) is found ,
|
/third_party/node/deps/npm/docs/content/using-npm/ |
D | dependency-selectors.md | 59 - `:invalid` when a dependency version is out of its ancestors specified range 163 Dependency groups are defined by the package relationships to their ancestors (ie. the dependency t…
|
/third_party/node/tools/doc/ |
D | json.mjs | 451 const ancestors = r`(?:${id}\.?)+`; constant 475 `^${maybeClassPropertyPrefix}${maybeBacktick}${ancestors}(${id})${maybeBacktick}$`, 'i') },
|