Home
last modified time | relevance | path

Searched refs:manifest_dict (Results 1 – 1 of 1) sorted by relevance

/trusty/user/base/tools/
Dmanifest_compiler.py333 def get_string(manifest_dict, key, constants, log, optional=False, argument
338 if key not in manifest_dict:
343 value = manifest_dict.pop(key)
365 def get_int(manifest_dict, key, constants, log, optional=False, argument
370 if key not in manifest_dict:
375 value = manifest_dict.pop(key)
399 def get_list(manifest_dict, key, log, optional=False, default=None): argument
403 if key not in manifest_dict:
408 return coerce_to_list(manifest_dict.pop(key), key, log)
420 def get_dict(manifest_dict, key, log, optional=False, default=None): argument
[all …]