D | manifest_compiler.py | 222 def __init__(self, constants, header): argument 223 self.constants = constants 321 def get_constant(constants, key, type_, log): argument 322 const = constants.get(key) 333 def get_string(manifest_dict, key, constants, log, optional=False, argument 348 const_value = get_constant(constants, value, type_, log) 365 def get_int(manifest_dict, key, constants, log, optional=False, argument 376 const_value = get_constant(constants, value, CONST_INT, log) 441 def get_boolean(manifest_dict, key, constants, log, optional=False, argument 452 const_value = get_constant(constants, value, CONST_BOOL, log) [all …]
|