Lines Matching refs:variable
107 variable = mo.group(1)
108 if variable in white_list:
111 if variable not in variables:
112 variables[variable] = set()
114 variables[variable].add(board_config_mk[len(TOP) + 1:])
119 def find_usage(variable, makefiles): argument
120 re_usage = re.compile('\$\(' + variable + '\)')
174 for variable, locations in sorted(variables.items()):
175 usage_in_sfe = find_usage(variable, sfe_makefiles)
176 usage_of_system_modules = find_usage(variable, system_module_makefiles)
182 csv_string += ','.join([variable,
188 print((variable + ' ').ljust(80, '='))