Home
last modified time | relevance | path

Searched refs:dep (Results 1 – 25 of 479) sorted by relevance

12345678910>>...20

/third_party/node/deps/npm/node_modules/libcipm/
Dindex.js147 this.tree.forEach((dep, next) => {
188 return tree.forEachAsync((dep, next) => {
189 if (!this.checkDepEnv(dep)) { return }
190 const depPath = dep.path(this.prefix)
191 const spec = npa.resolve(dep.name, dep.version, this.prefix)
192 if (dep.isRoot) {
196 this.log.silly('extractTree', `${dep.name}@${spec.fetchSpec} -> ${depPath} (symlink)`)
208 this.log.silly('extractTree', `${dep.name}@${dep.version} -> ${depPath}`)
210 dep.bundled
223 dep.name, dep, depPath, this.opts
[all …]
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
Dnode.c344 gpir_node_foreach_pred(succ, dep) { in gpir_node_add_dep()
345 if (dep->pred == pred) { in gpir_node_add_dep()
347 if (dep->type > type) in gpir_node_add_dep()
348 dep->type = type; in gpir_node_add_dep()
349 return dep; in gpir_node_add_dep()
353 gpir_dep *dep = ralloc(succ, gpir_dep); in gpir_node_add_dep() local
354 dep->type = type; in gpir_node_add_dep()
355 dep->pred = pred; in gpir_node_add_dep()
356 dep->succ = succ; in gpir_node_add_dep()
357 list_addtail(&dep->pred_link, &succ->pred_list); in gpir_node_add_dep()
[all …]
Dscheduler.c228 static int gpir_min_dist_alu(gpir_dep *dep) in gpir_min_dist_alu() argument
230 switch (dep->pred->op) { in gpir_min_dist_alu()
245 static int gpir_get_min_dist(gpir_dep *dep) in gpir_get_min_dist() argument
247 switch (dep->type) { in gpir_get_min_dist()
249 switch (dep->succ->op) { in gpir_get_min_dist()
258 if (dep->pred->type == gpir_node_type_load || in gpir_get_min_dist()
259 dep->pred->op == gpir_op_complex1) in gpir_get_min_dist()
265 return gpir_min_dist_alu(dep); in gpir_get_min_dist()
269 assert(dep->succ->op == gpir_op_store_temp); in gpir_get_min_dist()
270 return gpir_min_dist_alu(dep); in gpir_get_min_dist()
[all …]
/third_party/node/deps/npm/node_modules/npm-logical-tree/
Dindex.js21 addDep (dep) { argument
22 this.dependencies.set(dep.name, dep)
23 dep.requiredBy.add(this)
27 delDep (dep) { argument
28 this.dependencies.delete(dep.name)
29 dep.requiredBy.delete(this)
57 for (let dep of this.dependencies.values()) {
58 if (_seen.has(dep)) { continue }
59 _seen.add(dep)
60 if (dep === _from || dep.hasCycle(_seen, _from)) {
[all …]
/third_party/gn/src/gn/
Dresolved_target_data.cc149 for (const Target* dep : info->deps.linked_deps()) { in ComputeLibInfo() local
150 if (!dep->IsFinal() || dep->output_type() == Target::STATIC_LIBRARY) { in ComputeLibInfo()
151 const TargetInfo* dep_info = GetRecursiveTargetLibInfo(dep); in ComputeLibInfo()
181 for (const Target* dep : info->deps.linked_deps()) { in ComputeFrameworkInfo() local
182 if (!dep->IsFinal() || dep->output_type() == Target::STATIC_LIBRARY) { in ComputeFrameworkInfo()
183 const TargetInfo* dep_info = GetRecursiveTargetLibInfo(dep); in ComputeFrameworkInfo()
205 for (const Target* dep : info->deps.linked_deps()) { in ComputeHardDeps() local
207 if (info->target->hard_dep() || dep->hard_dep()) { in ComputeHardDeps()
208 all_hard_deps.insert(dep); in ComputeHardDeps()
216 if (dep->IsBinary() && !dep->all_headers_public() && in ComputeHardDeps()
[all …]
Dtarget.cc131 for (auto* dep : target->bundle_data().bundle_deps()) { in EnsureFileIsGeneratedByDependency() local
132 if (EnsureFileIsGeneratedByDependency(dep, file, false, in EnsureFileIsGeneratedByDependency()
475 for (const auto& dep : public_deps_) { in OnResolved() local
476 if (dep.ptr->toolchain() == toolchain() || in OnResolved()
477 dep.ptr->toolchain()->propagates_configs()) in OnResolved()
478 public_configs_.Append(dep.ptr->public_configs().begin(), in OnResolved()
479 dep.ptr->public_configs().end()); in OnResolved()
758 void Target::PullDependentTargetLibsFrom(const Target* dep, bool is_public) { in PullDependentTargetLibsFrom() argument
760 if (dep->output_type() == STATIC_LIBRARY || in PullDependentTargetLibsFrom()
761 dep->output_type() == SHARED_LIBRARY || in PullDependentTargetLibsFrom()
[all …]
Drust_project_writer_unittest.cc86 Target dep(setup.settings(), Label(SourceDir("//tortoise/"), "bar")); in TEST_F() local
87 dep.set_output_type(Target::RUST_LIBRARY); in TEST_F()
88 dep.visibility().SetPublic(); in TEST_F()
90 dep.sources().push_back(tlib); in TEST_F()
91 dep.source_types_used().Set(SourceFile::SOURCE_RS); in TEST_F()
92 dep.rust_values().set_crate_root(tlib); in TEST_F()
93 dep.rust_values().crate_name() = "tortoise"; in TEST_F()
94 dep.SetToolchain(setup.toolchain()); in TEST_F()
95 ASSERT_TRUE(dep.OnResolved(&err)); in TEST_F()
105 target.public_deps().push_back(LabelTargetPair(&dep)); in TEST_F()
[all …]
Dninja_target_writer_unittest.cc74 std::vector<OutputFile> dep = in TEST() local
79 ASSERT_EQ(1u, dep.size()); in TEST()
80 EXPECT_EQ("../../foo/script.py", dep[0].value()); in TEST()
88 std::vector<OutputFile> dep = in TEST() local
93 ASSERT_EQ(1u, dep.size()); in TEST()
94 EXPECT_EQ("obj/foo/base.stamp", dep[0].value()); in TEST()
119 std::vector<OutputFile> dep = in TEST() local
122 ASSERT_EQ(1u, dep.size()); in TEST()
123 EXPECT_EQ("obj/foo/action.inputdeps.stamp", dep[0].value()); in TEST()
155 std::vector<OutputFile> dep = in TEST() local
[all …]
Dninja_binary_target_writer.cc119 for (auto* dep : classified_deps.non_linkable_deps) in WriteSourceSetStamp() local
120 order_only_deps.push_back(dep->dependency_output_file()); in WriteSourceSetStamp()
147 const Target* dep, in ClassifyDependency() argument
159 if (can_link_libs && dep->builds_swift_module()) in ClassifyDependency()
160 classified_deps->swiftmodule_deps.push_back(dep); in ClassifyDependency()
165 dep->IsLinkable()) { in ClassifyDependency()
168 classified_deps->linkable_deps.push_back(dep); in ClassifyDependency()
169 } else if (dep->output_type() == Target::SOURCE_SET || in ClassifyDependency()
176 (dep->output_type() == Target::STATIC_LIBRARY && in ClassifyDependency()
177 !dep->complete_static_lib()))) { in ClassifyDependency()
[all …]
/third_party/typescript/tests/baselines/reference/
DjsDeclarationsPackageJson.types3 …scripts: { scriptname: string; }; devDependencies: { "@ns/dep": string; }; dependencies: { dep: st…
4 …scripts: { scriptname: string; }; devDependencies: { "@ns/dep": string; }; dependencies: { dep: st…
9 …scripts: { scriptname: string; }; devDependencies: { "@ns/dep": string; }; dependencies: { dep: st…
10 …scripts: { scriptname: string; }; devDependencies: { "@ns/dep": string; }; dependencies: { dep: st…
11 …scripts: { scriptname: string; }; devDependencies: { "@ns/dep": string; }; dependencies: { dep: st…
12 …scripts: { scriptname: string; }; devDependencies: { "@ns/dep": string; }; dependencies: { dep: st…
13 …scripts: { scriptname: string; }; devDependencies: { "@ns/dep": string; }; dependencies: { dep: st…
17dep": "0.1.2", }, "dependencies": { "dep": "1.2.3", }, "repository": "microsoft/T…
63 >"devDependencies" : { "@ns/dep": string; }
64 >{ "@ns/dep": "0.1.2", } : { "@ns/dep": string; }
[all …]
DdeclarationEmitHasTypesRefOnNamespaceUse.symbols4 >NS.Dep : Symbol(NS.Dep, Decl(dep.d.ts, 0, 22))
5 >NS : Symbol(NS, Decl(dep.d.ts, 0, 0))
6 >Dep : Symbol(NS.Dep, Decl(dep.d.ts, 0, 22))
8 === /deps/dep/dep.d.ts ===
10 >NS : Symbol(NS, Decl(dep.d.ts, 0, 0))
13 >Dep : Symbol(Dep, Decl(dep.d.ts, 0, 22))
/third_party/mesa3d/src/intel/compiler/
Dbrw_fs_scoreboard.cpp505 is_valid(const dependency &dep) in is_valid() argument
507 return dep.ordered || dep.unordered; in is_valid()
521 dependency dep; in merge() local
524 dep.ordered = dep0.ordered | dep1.ordered; in merge()
526 dep.jp.jp[p] = MAX2(dep0.jp.jp[p], dep1.jp.jp[p]); in merge()
530 dep.unordered = dep0.unordered | dep1.unordered; in merge()
531 dep.id = eq.link(dep0.unordered ? dep0.id : dep1.id, in merge()
535 dep.exec_all = dep0.exec_all || dep1.exec_all; in merge()
537 return dep; in merge()
566 dependency dep = dep1; in shadow() local
[all …]
/third_party/toybox/kconfig/
Dmenu.c102 void menu_add_dep(struct expr *dep) in menu_add_dep() argument
104 current_entry->dep = expr_alloc_and(current_entry->dep, menu_check_dep(dep)); in menu_add_dep()
122 …uct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep) in menu_add_prop() argument
128 prop->visible.expr = menu_check_dep(dep); in menu_add_prop()
145 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) in menu_add_prompt() argument
147 return menu_add_prop(type, prompt, NULL, dep); in menu_add_prompt()
150 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument
152 menu_add_prop(type, NULL, expr, dep); in menu_add_expr()
155 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument
157 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep); in menu_add_symbol()
[all …]
/third_party/node/deps/npm/lib/
Doutdated.js173 var dep = p[0]
175 var dir = dep.path
187 if (long) out.push(type, dep.package.homepage)
196 var dep = p[0]
198 var dir = dep.path
213 out[depname].homepage = dep.package.homepage
233 deps.forEach(function (dep) { argument
234 types[moduleName(dep)] = 'dependencies'
275 deps = deps.filter(function (dep) { return pkg.devDependencies[moduleName(dep)] }) argument
276 deps.forEach(function (dep) { argument
[all …]
Dls.js229 var dep = data.dependencies[d]
230 if (dep.missing && !dep.optional) {
238 p += d + '@' + dep.requiredBy +
242 if (dep.dependencies) {
243 return [d, getLite(dep, true)]
245 return [d, { required: dep.requiredBy, missing: true }]
247 } else if (dep.peerMissing) {
249 dep.peerMissing.forEach(function (missing) {
256 return [d, { required: dep, peerMissing: true }]
258 if (depth === maxDepth) delete dep.dependencies
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dcontrol_dependence.cpp71 std::ostream& operator<<(std::ostream& os, const ControlDependence& dep) { in operator <<() argument
72 os << dep.source_bb_id() << "->" << dep.target_bb_id(); in operator <<()
73 if (dep.branch_target_bb_id() != dep.target_bb_id()) { in operator <<()
74 os << " through " << dep.branch_target_bb_id(); in operator <<()
128 for (const ControlDependence& dep : reverse_nodes_[child->id()]) { in ComputePostDominanceFrontierForNode() local
130 if (dep.source_bb_id() == kPseudoEntryBlock || in ComputePostDominanceFrontierForNode()
131 !pdom.StrictlyDominates(label, dep.source_bb_id())) { in ComputePostDominanceFrontierForNode()
132 edges.push_back(ControlDependence(dep.source_bb_id(), label, in ComputePostDominanceFrontierForNode()
133 dep.branch_target_bb_id())); in ComputePostDominanceFrontierForNode()
149 for (const ControlDependence& dep : entry.second) { in ComputeForwardGraphFromReverse() local
[all …]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dcontrol_dependence.cpp71 std::ostream& operator<<(std::ostream& os, const ControlDependence& dep) { in operator <<() argument
72 os << dep.source_bb_id() << "->" << dep.target_bb_id(); in operator <<()
73 if (dep.branch_target_bb_id() != dep.target_bb_id()) { in operator <<()
74 os << " through " << dep.branch_target_bb_id(); in operator <<()
128 for (const ControlDependence& dep : reverse_nodes_[child->id()]) { in ComputePostDominanceFrontierForNode() local
130 if (dep.source_bb_id() == kPseudoEntryBlock || in ComputePostDominanceFrontierForNode()
131 !pdom.StrictlyDominates(label, dep.source_bb_id())) { in ComputePostDominanceFrontierForNode()
132 edges.push_back(ControlDependence(dep.source_bb_id(), label, in ComputePostDominanceFrontierForNode()
133 dep.branch_target_bb_id())); in ComputePostDominanceFrontierForNode()
149 for (const ControlDependence& dep : entry.second) { in ComputeForwardGraphFromReverse() local
[all …]
/third_party/spirv-tools/source/opt/
Dcontrol_dependence.cpp71 std::ostream& operator<<(std::ostream& os, const ControlDependence& dep) { in operator <<() argument
72 os << dep.source_bb_id() << "->" << dep.target_bb_id(); in operator <<()
73 if (dep.branch_target_bb_id() != dep.target_bb_id()) { in operator <<()
74 os << " through " << dep.branch_target_bb_id(); in operator <<()
128 for (const ControlDependence& dep : reverse_nodes_[child->id()]) { in ComputePostDominanceFrontierForNode() local
130 if (dep.source_bb_id() == kPseudoEntryBlock || in ComputePostDominanceFrontierForNode()
131 !pdom.StrictlyDominates(label, dep.source_bb_id())) { in ComputePostDominanceFrontierForNode()
132 edges.push_back(ControlDependence(dep.source_bb_id(), label, in ComputePostDominanceFrontierForNode()
133 dep.branch_target_bb_id())); in ComputePostDominanceFrontierForNode()
149 for (const ControlDependence& dep : entry.second) { in ComputeForwardGraphFromReverse() local
[all …]
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
Dnode.c402 ppir_node_foreach_pred(succ, dep) { in ppir_node_add_dep()
403 if (dep->pred == pred) in ppir_node_add_dep()
407 ppir_dep *dep = ralloc(succ, ppir_dep); in ppir_node_add_dep() local
408 dep->pred = pred; in ppir_node_add_dep()
409 dep->succ = succ; in ppir_node_add_dep()
410 dep->type = type; in ppir_node_add_dep()
411 list_addtail(&dep->pred_link, &succ->pred_list); in ppir_node_add_dep()
412 list_addtail(&dep->succ_link, &pred->succ_list); in ppir_node_add_dep()
415 void ppir_node_remove_dep(ppir_dep *dep) in ppir_node_remove_dep() argument
417 list_del(&dep->succ_link); in ppir_node_remove_dep()
[all …]
/third_party/mbedtls/tests/scripts/
Dset_psa_test_dependencies.py94 def is_classic_dependency(dep): argument
96 if dep.startswith('!'):
97 dep = dep[1:]
98 return dep in CLASSIC_DEPENDENCIES
100 def is_systematic_dependency(dep): argument
102 if dep.startswith('PSA_WANT_ECC_'):
104 return dep.startswith('PSA_WANT_')
178 manual = [dep for dep in dependencies
179 if not (is_systematic_dependency(dep) or
180 is_classic_dependency(dep))]
/third_party/node/deps/npm/node_modules/read-installed/test/
Dgrandparent-peer.js7 deps.forEach(function (dep) { argument
8 …t.notOk(map.dependencies[dep].invalid, 'dependency ' + dep + ' of ' + map.name + ' is not invalid')
9 …t.notOk(typeof map.dependencies[dep] === 'string', 'dependency ' + dep + ' of ' + map.name + ' is …
11 deps.forEach(function (dep) { argument
12 allValid(t, map.dependencies[dep])
/third_party/node/deps/npm/node_modules/read-installed/
Dread-installed.js250 installedData.forEach(function (dep) { argument
251 obj.dependencies[dep.realName] = dep
257 Object.keys(obj.optionalDependencies).forEach(function (dep) { argument
258 if (typeof obj.dependencies[dep] === "string") {
259 delete obj.dependencies[dep]
277 Object.keys(obj.dependencies).forEach(function (dep) { argument
278 findUnmet(obj.dependencies[dep], opts)
280 Object.keys(obj.dependencies).forEach(function (dep) { argument
281 if (typeof obj.dependencies[dep] === "object") {
282 resolveInheritance(obj.dependencies[dep], opts)
[all …]
/third_party/node/deps/npm/test/tap/
Dinstall-link-scripts.js13 var dep = path.join(pkg, 'dep') variable
50 mkdirp.sync(path.join(dep, 'bin'))
52 path.join(dep, 'package.json'),
55 fs.writeFileSync(path.join(dep, 'bin', 'foo'), foo)
56 fs.chmod(path.join(dep, 'bin', 'foo'), '0755')
64 'install', dep,
69 t.ifErr(err, 'npm install ' + dep + ' finished without error')
84 { cwd: dep },
101 { cwd: dep },
/third_party/node/test/parallel/
Dtest-policy-dependencies.js13 const dep = fixtures.path('policy', 'parent.js'); constant
22 '--experimental-policy', depPolicy, dep,
36 '--experimental-policy', depPolicy, dep,
49 '--experimental-policy', depPolicy, dep,
62 '--experimental-policy', depPolicy, dep,
76 '--experimental-policy', depPolicy, dep,
89 '--experimental-policy', depPolicy, dep,
102 '--experimental-policy', depPolicy, dep,
/third_party/typescript/src/testRunner/unittests/tsbuild/
DgraphOrdering.ts57 for (const dep of deps) { constant
58 const child = getProjectFileName(dep[0]);
60 const parent = getProjectFileName(dep[1]);
72 for (const dep of deps) { constant
73 …if (projectNames.indexOf(dep[0]) < 0) throw new Error(`Invalid dependency - project ${dep[0]} does…
74 …if (projectNames.indexOf(dep[1]) < 0) throw new Error(`Invalid dependency - project ${dep[1]} does…

12345678910>>...20