Home
last modified time | relevance | path

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

1234

/third_party/node/lib/internal/repl/
Dawait.js27 return state.ancestors[state.ancestors.length - 2] === state.body;
71 state.ancestors[state.ancestors.length - 2].type
144 const isNew = node !== state.ancestors[state.ancestors.length - 1];
146 ArrayPrototypePush(state.ancestors, node);
150 ArrayPrototypePop(state.ancestors);
197 ancestors: [], property
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Ddebug.dart50 final List<Widget> ancestors = <Widget>[];
52 ancestors.add(element.widget);
55 if (ancestors.isNotEmpty) {
56 message.write('The ancestors of this widget were:');
57 for (Widget ancestor in ancestors)
62 'ancestors, let alone a "Material" ancestor.'
110 final List<Widget> ancestors = <Widget>[];
112 ancestors.add(element.widget);
115 if (ancestors.isNotEmpty) {
116 message.write('The ancestors of this widget were:');
[all …]
Ddrawer_header.dart19 /// Requires one of its ancestors to be a [Material] widget. This condition is
30 /// Requires one of its ancestors to be a [Material] widget.
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dinit_state_test.dart8 List<String> ancestors = <String>[];
20 ancestors.add(element.widget.runtimeType.toString());
32 expect(ancestors, equals(<String>['Container', 'RenderObjectToWidgetAdapter<RenderBox>']));
/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/node_modules/npm-install-checks/
Dindex.js83 function checkCycle (target, ancestors, cb) { argument
105 var p = Object.getPrototypeOf(Object.getPrototypeOf(ancestors))
114 var tree = [target._id, JSON.parse(JSON.stringify(ancestors))]
115 var t = Object.getPrototypeOf(ancestors)
DREADME.md19 ### .checkCycle(target, ancestors, cb)
/third_party/node/deps/npm/node_modules/json-stringify-safe/
DCHANGELOG.md2 - Fixes stringify to only take ancestors into account when checking
11 only the ancestors for a circular references speeds up things considerably.
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dnotification_listener.dart10 /// notification to continue to be dispatched to further ancestors.
24 /// widgets with the appropriate type parameters that are ancestors of the given
55 /// with the appropriate type parameters that are ancestors of the given
110 /// allow the notification to continue to be dispatched to further ancestors.
148 /// widgets with the appropriate type parameters that are ancestors of the given
158 /// ancestors when appropriate, or alternatively, dispatch the notifications
/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/grpc/src/ruby/lib/grpc/generic/
Dinterceptor_registry.rb37 unless i.class.ancestors.include?(base)
/third_party/flutter/flutter/packages/flutter/test/material/
Ddebug_test.dart14 …expect(exception.toString(), endsWith(':\n ListTile\nThe ancestors of this widget were:\n [root]…
/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/exfat-utils/fsck/
Dfsck.c63 struct exfat_inode *ancestors[255]; member
269 struct exfat_inode **ancestors, int count, in get_ancestors() argument
297 ancestors[i] = dir; in get_ancestors()
315 ctx->ancestors, in resolve_path()
316 sizeof(ctx->ancestors) / sizeof(ctx->ancestors[0]), in resolve_path()
322 name_len = exfat_utf16_len(ctx->ancestors[i]->name, in resolve_path()
324 memcpy((char *)utf16_path, (char *)ctx->ancestors[i]->name, in resolve_path()

1234