Home
last modified time | relevance | path

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

/scripts/
Dheaderdep.pl105 if(my($dep) = ($line =~ m/^#\s*include\s*<(.*?)>/)) {
106 push @queue, $dep;
107 push @{$deps{$header}}, [$i + 1, $dep];
148 for my $dep (@{$deps{$name}}) {
149 my $chain = [@$top, [$dep->[0], $dep->[1]]];
153 if(grep { $_->[1] eq $dep->[1] } @$top) {
186 for my $dep (@{$deps{$header}}) {
188 mangle($header), mangle($dep->[1]);
Dgenerate_rust_analyzer.py34 "deps": [{"crate": crates_indexes[dep], "name": dep} for dep in deps],
DMakefile.build303 $(rust_common_cmd) --emit=dep-info,obj $<; \
311 $(rust_common_cmd) --emit=dep-info -Zunpretty=expanded $< >$@; \
320 $(rust_common_cmd) --emit=dep-info,asm $<; \
328 $(rust_common_cmd) --emit=dep-info,llvm-ir $<; \
DMakefile.host152 $(HOSTRUSTC) $(hostrust_flags) --emit=dep-info,link \
/scripts/kconfig/
Dmenu.c108 void menu_add_dep(struct expr *dep) in menu_add_dep() argument
110 current_entry->dep = expr_alloc_and(current_entry->dep, dep); in menu_add_dep()
130 struct expr *dep) in menu_add_prop() argument
141 prop->visible.expr = dep; in menu_add_prop()
158 struct expr *dep) in menu_add_prompt() argument
160 struct property *prop = menu_add_prop(type, NULL, dep); in menu_add_prompt()
205 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument
207 menu_add_prop(type, expr, dep); in menu_add_expr()
210 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument
212 menu_add_prop(type, expr_alloc_symbol(sym), dep); in menu_add_symbol()
[all …]
Dlkc.h87 void menu_add_dep(struct expr *dep);
88 void menu_add_visibility(struct expr *dep);
89 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
90 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep);
91 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
Dexpr.h49 #define EXPR_NOT(dep) (2-(dep)) argument
250 struct expr *dep; member
302 int expr_contains_symbol(struct expr *dep, struct symbol *sym);
303 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
Dstreamline_config.pl224 my $dep = $3;
225 if ($dep !~ /^\s*(y|m|n)\s*$/) {
226 $dep =~ s/.*\sif\s+//;
227 $depends{$config} .= " " . $dep;
228 dprint "Added default depends $dep to $config\n";
Dexpr.c851 int expr_contains_symbol(struct expr *dep, struct symbol *sym) in expr_contains_symbol() argument
853 if (!dep) in expr_contains_symbol()
856 switch (dep->type) { in expr_contains_symbol()
859 return expr_contains_symbol(dep->left.expr, sym) || in expr_contains_symbol()
860 expr_contains_symbol(dep->right.expr, sym); in expr_contains_symbol()
862 return dep->left.sym == sym; in expr_contains_symbol()
869 return dep->left.sym == sym || in expr_contains_symbol()
870 dep->right.sym == sym; in expr_contains_symbol()
872 return expr_contains_symbol(dep->left.expr, sym); in expr_contains_symbol()
879 bool expr_depends_symbol(struct expr *dep, struct symbol *sym) in expr_depends_symbol() argument
[all …]