Searched refs:dep (Results 1 – 5 of 5) sorted by relevance
/scripts/ |
D | headerdep.pl | 104 if(my($dep) = ($line =~ m/^#\s*include\s*<(.*?)>/)) { 105 push @queue, $dep; 106 push @{$deps{$header}}, [$i + 1, $dep]; 147 for my $dep (@{$deps{$name}}) { 148 my $chain = [@$top, [$dep->[0], $dep->[1]]]; 152 if(grep { $_->[1] eq $dep->[1] } @$top) { 185 for my $dep (@{$deps{$header}}) { 187 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, menu_check_dep(dep)); in menu_add_dep() 127 …uct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep) in menu_add_prop() argument 133 prop->visible.expr = menu_check_dep(dep); in menu_add_prop() 177 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) in menu_add_prompt() argument 179 return menu_add_prop(type, prompt, NULL, dep); in menu_add_prompt() 188 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument 190 menu_add_prop(type, NULL, expr, dep); in menu_add_expr() 193 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument 195 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep); in menu_add_symbol() [all …]
|
D | lkc.h | 113 void menu_add_dep(struct expr *dep); 114 void menu_add_visibility(struct expr *dep); 115 …ct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep); 116 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep); 117 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); 118 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
|
D | expr.h | 47 #define EXPR_NOT(dep) (2-(dep)) argument 169 struct expr *dep; member 212 int expr_contains_symbol(struct expr *dep, struct symbol *sym); 213 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
|
D | expr.c | 773 int expr_contains_symbol(struct expr *dep, struct symbol *sym) in expr_contains_symbol() argument 775 if (!dep) in expr_contains_symbol() 778 switch (dep->type) { in expr_contains_symbol() 781 return expr_contains_symbol(dep->left.expr, sym) || in expr_contains_symbol() 782 expr_contains_symbol(dep->right.expr, sym); in expr_contains_symbol() 784 return dep->left.sym == sym; in expr_contains_symbol() 787 return dep->left.sym == sym || in expr_contains_symbol() 788 dep->right.sym == sym; in expr_contains_symbol() 790 return expr_contains_symbol(dep->left.expr, sym); in expr_contains_symbol() 797 bool expr_depends_symbol(struct expr *dep, struct symbol *sym) in expr_depends_symbol() argument [all …]
|