/third_party/node/deps/npm/test/fixtures/ |
D | eresolve-explanations.js | 14 dependents: [ property 28 dependents: [ property 43 dependents: [ property 53 dependents: [ property 62 dependents: [ property 93 dependents: [ property 102 dependents: [ property 119 dependents: [ property 142 dependents: [ property 165 dependents: [ property [all …]
|
/third_party/node/deps/npm/test/lib/utils/ |
D | explain-dep.js | 14 dependents: [ property 31 dependents: [ property 40 dependents: [ property 49 dependents: [ property 72 dependents: [ property 89 dependents: [ property 106 dependents: [ property 123 dependents: [], property 132 dependents: [{ property 148 dependents: [ property [all …]
|
/third_party/node/deps/npm/lib/utils/ |
D | explain-dep.js | 78 const explainDependents = ({ name, dependents }, depth, chalk) => { field 79 if (!dependents || !dependents.length || depth <= 0) { 84 const messages = dependents.slice(0, max) 88 if (dependents.length > max) { 92 for (let i = max; i < dependents.length; i++) { 93 const { from: { name: depName = 'the root project' } } = dependents[i] 95 if (len >= maxLen && i < dependents.length - 1) { 102 messages.push(`${dependents.length - max} more ${show}`)
|
/third_party/mesa3d/src/panfrost/midgard/ |
D | midgard_schedule.c | 75 BITSET_WORD *dependents = instructions[*parent]->dependents; in add_dependency() local 78 if (BITSET_TEST(dependents, child)) in add_dependency() 81 BITSET_SET(dependents, child); in add_dependency() 113 instructions[i]->dependents = in mir_create_dependency_graph() 156 BITSET_WORD *dependents = instructions[prev]->dependents; in mir_create_dependency_graph() local 159 if (BITSET_TEST(dependents, i)) in mir_create_dependency_graph() 162 BITSET_SET(dependents, i); in mir_create_dependency_graph() 189 BITSET_WORD *dependents = instructions[count - 1]->dependents; in mir_create_dependency_graph() local 192 if (BITSET_TEST(dependents, i)) in mir_create_dependency_graph() 195 BITSET_SET(dependents, i); in mir_create_dependency_graph() [all …]
|
D | compiler.h | 169 BITSET_WORD *dependents; member
|
/third_party/mesa3d/src/panfrost/bifrost/ |
D | bi_schedule.c | 47 BITSET_WORD **dependents; member 177 BITSET_WORD **dependents, unsigned *dep_counts) in bi_push_dependency() argument 179 if (!BITSET_TEST(dependents[parent], child)) { in bi_push_dependency() 180 BITSET_SET(dependents[parent], child); in bi_push_dependency() 187 BITSET_WORD **dependents, unsigned *dep_counts) in add_dependency() argument 191 bi_push_dependency(*parent, child, dependents, dep_counts); in add_dependency() 225 st.dependents[i] = in bi_create_dependency_graph() 242 … add_dependency(last_write, ins->src[s].value + c, i, st.dependents, st.dep_counts); in bi_create_dependency_graph() 251 bi_push_dependency(prev_msg, i, st.dependents, st.dep_counts); in bi_create_dependency_graph() 262 st.dependents, st.dep_counts); in bi_create_dependency_graph() [all …]
|
/third_party/skia/third_party/externals/dawn/scripts/ |
D | dawn_component.gni | 27 # - The static library doesn't export symbols nor make dependents import them 54 # The config that will apply to dependents of the shared library so they know 81 # Tell dependents where to find this shared library
|
/third_party/ninja/src/ |
D | build.cc | 377 set<Node*> dependents; in RefreshDyndepDependents() local 378 UnmarkDependents(node, &dependents); in RefreshDyndepDependents() 382 for (set<Node*>::iterator i = dependents.begin(); in RefreshDyndepDependents() 383 i != dependents.end(); ++i) { in RefreshDyndepDependents() 420 void Plan::UnmarkDependents(const Node* node, set<Node*>* dependents) { in UnmarkDependents() argument 433 if (dependents->insert(*o).second) in UnmarkDependents() 434 UnmarkDependents(*o, dependents); in UnmarkDependents()
|
D | build.h | 85 void UnmarkDependents(const Node* node, std::set<Node*>* dependents);
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | input.py | 1674 self.dependents = [] 1694 in_degree_zeros = sorted(self.dependents[:], key=ExtractNodeRef) 1706 for node_dependent in sorted(node.dependents, key=ExtractNodeRef): 1738 for child in node.dependents: 1964 root_node.dependents.append(target_node) 1974 dependency_node.dependents.append(target_node) 1981 if not root_node.dependents: 1987 root_node.dependents.append(target_node) 2031 dependency_node.dependents.append(build_file_node) 2038 root_node.dependents.append(build_file_node) [all …]
|
D | input_test.py | 21 dependency.dependents.append(dependent)
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | input.py | 1681 self.dependents = [] 1701 in_degree_zeros = sorted(self.dependents[:], key=ExtractNodeRef) 1713 for node_dependent in sorted(node.dependents, key=ExtractNodeRef): 1745 for child in node.dependents: 1971 root_node.dependents.append(target_node) 1981 dependency_node.dependents.append(target_node) 1988 if not root_node.dependents: 1994 root_node.dependents.append(target_node) 2038 dependency_node.dependents.append(build_file_node) 2045 root_node.dependents.append(build_file_node) [all …]
|
D | input_test.py | 21 dependency.dependents.append(dependent)
|
/third_party/nghttp2/third-party/ |
D | CMakeLists.txt | 50 # invoke 'ninja mruby' before building dependents.
|
/third_party/skia/third_party/externals/dawn/src/dawn/ |
D | CMakeLists.txt | 30 # to the dependant's list of sources. If these dependents are in another
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
D | node.js | 430 why.dependents = [] 432 why.dependents.push(edge.explain(seen)) 445 why.dependents.push(edge.explain(seen))
|
/third_party/skia/src/gpu/ |
D | GrRenderTask.h | 81 SkSpan<GrRenderTask*> dependents() { return SkMakeSpan(fDependents); } in dependents() function
|
/third_party/node/deps/npm/test/lib/commands/ |
D | explain.js | 150 dependents: Array, property
|
/third_party/gn/src/gn/ |
D | variables.cc | 544 arflags are NOT pushed to dependents, so applying arflags to source sets or 1375 ldflags are NOT pushed to dependents, so applying ldflags to source sets or 1804 complete before any dependents link. 1818 "public_configs: [label list] Configs applied to dependents."; 1820 R"(public_configs: Configs to be applied on dependents.
|
D | functions_target.cc | 598 that apply to their dependents. in RunCopy()
|
/third_party/icu/docs/userguide/layoutengine/ |
D | paragraph.md | 72 * set `ICULEHB_LIBS` to link against icu-le-hb and dependents as needed
|
/third_party/node/deps/npm/docs/content/using-npm/ |
D | dependency-selectors.md | 87 …a version exists that is greater than the current one, and satisfies at least one if its dependents 88 …ersion exists that is greater than the current one, does not satisfy at least one of its dependents
|
/third_party/skia/src/gpu/ops/ |
D | AtlasPathRenderer.cpp | 74 for (GrRenderTask* previousAtlasUser : previousAtlasTask->dependents()) { in validate_atlas_dependencies()
|
/third_party/skia/third_party/externals/icu/ |
D | BUILD.gn | 29 # Shared config used by ICU and all dependents.
|
/third_party/rust/crates/log/ |
D | CHANGELOG.md | 37 …except with a `kv_unstable_std` feature added to aid migrating current dependents to `0.4.14` (whi…
|