Searched refs:dep (Results 1 – 6 of 6) sorted by relevance
/scripts/ |
D | headerdep.pl | 105 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]);
|
/scripts/kconfig/ |
D | menu.c | 107 void menu_add_dep(struct expr *dep) in menu_add_dep() argument 109 current_entry->dep = expr_alloc_and(current_entry->dep, dep); in menu_add_dep() 129 struct expr *dep) in menu_add_prop() argument 140 prop->visible.expr = dep; in menu_add_prop() 157 struct expr *dep) in menu_add_prompt() argument 159 struct property *prop = menu_add_prop(type, NULL, dep); in menu_add_prompt() 204 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument 206 menu_add_prop(type, expr, dep); in menu_add_expr() 209 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument 211 menu_add_prop(type, expr_alloc_symbol(sym), dep); in menu_add_symbol() [all …]
|
D | lkc.h | 101 void menu_add_dep(struct expr *dep); 102 void menu_add_visibility(struct expr *dep); 103 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep); 104 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); 105 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
|
D | expr.h | 49 #define EXPR_NOT(dep) (2-(dep)) argument 253 struct expr *dep; member 308 int expr_contains_symbol(struct expr *dep, struct symbol *sym); 309 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
|
D | streamline_config.pl | 224 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";
|
D | expr.c | 851 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 …]
|