Home
last modified time | relevance | path

Searched refs:ancestors (Results 1 – 25 of 52) sorted by relevance

123

/third_party/node/lib/internal/repl/
Dawait.js26 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/
Dexfat_fs.c220 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/
Dwalk.js38 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(); }
Dwalk.mjs32 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(); }
Dwalk.d.ts13 ancestors: Node[],
26 ancestors: Node[]
/third_party/node/deps/npm/test/fixtures/
Dmerge-conflict.json8 ||||||| merged common ancestors
27 ||||||| merged common ancestors
/third_party/rust/crates/bindgen/bindgen/ir/
Dtemplate.rs136 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()
Ditem.rs98 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/
Dvaliditygenerator.py340 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/
DconflictMarkerDiff3Trivia1.ts4 ||||||| merged common ancestors
DconflictMarkerDiff3Trivia2.ts6 ||||||| merged common ancestors
/third_party/typescript/tests/baselines/reference/
DconflictMarkerDiff3Trivia1.js5 ||||||| merged common ancestors field in C
DconflictMarkerDiff3Trivia1.types10 ||||||| merged common ancestors
DconflictMarkerDiff3Trivia2.js7 ||||||| merged common ancestors field in C
DconflictMarkerDiff3Trivia2.types13 ||||||| merged common ancestors
DconflictMarkerDiff3Trivia1.symbols9 ||||||| merged common ancestors
DconflictMarkerDiff3Trivia2.symbols11 ||||||| merged common ancestors
DconflictMarkerDiff3Trivia1.errors.txt13 ||||||| merged common ancestors
DconflictMarkerDiff3Trivia2.errors.txt18 ||||||| merged common ancestors
/third_party/node/deps/acorn/acorn-walk/
DREADME.md71 Literal(_, ancestors) {
72 console.log("This literal's ancestors are:", ancestors.map(n => n.type))
/third_party/exfatprogs/include/
Dexfat_fs.h58 struct exfat_inode *ancestors[255]; member
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dconsistency_tools.py664 for handle_type, ancestors in handle_ancestors.items():
668 for ancestor in ancestors)
/third_party/python/PC/
Dreadme.txt25 ancestors, if a landmark file (Lib/string.py) is found ,
/third_party/node/deps/npm/docs/content/using-npm/
Ddependency-selectors.md59 - `: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/
Djson.mjs451 const ancestors = r`(?:${id}\.?)+`; constant
475 `^${maybeClassPropertyPrefix}${maybeBacktick}${ancestors}(${id})${maybeBacktick}$`, 'i') },

123