Home | History | Annotate | Download | only in common_lib

Lines Matching refs:variables

38     """Validate the given set of variables from a control file.
42 @param control_file_vars: dict of variables set in a control file.
43 @param raise_warnings: True iff we should raise on invalid variables.
49 'variables were specified in %s. Please define '
57 warning = ('WARNING: Obsolete variables were '
396 def _try_extract_assignment(node, variables):
400 @param variables: Dictionary to store the parsed assignments.
404 variables[key] = val
414 variables = {}
425 variables.clear()
426 variables.update(vars_in_step)
430 variables.update(injection_variables)
431 return ControlData(variables, path, raise_warnings)