Home
last modified time | relevance | path

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

/tools/asuite/aidegen/lib/
Dsource_locator_unittest.py87 module_data = source_locator.ModuleData(
89 src_path = module_data._get_source_folder(test_java)
94 src_path = module_data._get_source_folder(test_java)
100 src_path = module_data._get_source_folder(test_java)
105 module_data = source_locator.ModuleData(
110 r_dir = module_data._get_r_dir(test_aapt2_srcjar)
116 r_dir = module_data._get_r_dir(test_r_jar)
122 r_dir = module_data._get_r_dir(test_wrong_r_jar)
128 r_dir = module_data._get_r_dir(test_unknown_target)
140 module_data = source_locator.ModuleData(unittest_constants.TEST_MODULE,
[all …]
Dsource_locator.py84 def __init__(self, module_name, module_data, depth): argument
111 assert module_data, 'Module data of %s can\'t be null.' % module_name
113 self.module_data = module_data
130 return self._check_key('class') and 'APPS' in self.module_data['class']
159 for srcjar in self.module_data[constant.KEY_SRCJARS]:
195 for srcjar in self.module_data[constant.KEY_SRCJARS]:
232 self.module_path = (self.module_data[constant.KEY_PATH][0]
244 self.module_depth = (int(self.module_data[constant.KEY_DEPTH])
255 return (_KEY_JARJAR_RULES in self.module_data and
256 self.module_data[_KEY_JARJAR_RULES][0] == _JARJAR_RULES_FILE)
[all …]
Dproject_info.py357 for module_name, module_data in self.dep_modules.items():
358 module = self._generate_moduledata(module_name, module_data)
379 def _generate_moduledata(self, module_name, module_data): argument
396 module_name, module_data, self.project_relative_path)
398 return source_locator.ModuleData(module_name, module_data, depth)
414 if constant.KEY_DEPENDENCIES in module.module_data:
416 x for x in module.module_data[constant.KEY_DEPENDENCIES]