Lines Matching refs:module_data
83 def __init__(self, module_name, module_data, depth): argument
110 assert module_data, 'Module data of %s can\'t be null.' % module_name
112 self.module_data = module_data
129 return self._check_key('class') and 'APPS' in self.module_data['class']
158 for srcjar in self.module_data[constant.KEY_SRCJARS]:
194 for srcjar in self.module_data[constant.KEY_SRCJARS]:
231 self.module_path = (self.module_data[constant.KEY_PATH][0]
243 self.module_depth = (int(self.module_data[constant.KEY_DEPTH])
254 return (_KEY_JARJAR_RULES in self.module_data and
255 self.module_data[_KEY_JARJAR_RULES][0] == _JARJAR_RULES_FILE)
269 for src_item in self.module_data[constant.KEY_SRCS]:
291 return key in self.module_data and self.module_data[key]
441 for jar in self.module_data[constant.KEY_CLASSES_JAR]:
457 for jar in self.module_data[constant.KEY_INSTALLED]:
487 for jar_name in self.module_data[constant.KEY_JARS]:
583 for module in self.module_data.get(constant.KEY_DEPENDENCIES, []):
608 def __init__(self, module_name, module_data, project_relpath): argument
619 super().__init__(module_name, module_data, depth=0)
621 module_data, project_relpath)