Lines Matching refs:constant
26 from aidegen import constant
54 _FRAMEWORK_SRCJARS_PATH = os.path.join(constant.FRAMEWORK_PATH,
55 constant.FRAMEWORK_SRCJARS)
158 and self._check_key(constant.KEY_SRCJARS)):
159 for srcjar in self.module_data[constant.KEY_SRCJARS]:
194 if self._is_target_module() and self._check_key(constant.KEY_SRCJARS):
195 for srcjar in self.module_data[constant.KEY_SRCJARS]:
232 self.module_path = (self.module_data[constant.KEY_PATH][0]
233 if self._check_key(constant.KEY_PATH) else '')
244 self.module_depth = (int(self.module_data[constant.KEY_DEPTH])
260 return self._check_key(constant.KEY_JARS)
264 return self._check_key(constant.KEY_CLASSES_JAR)
268 if self._check_key(constant.KEY_SRCS):
270 for src_item in self.module_data[constant.KEY_SRCS]:
317 return constant.KEY_TESTS in src_dir.split(os.sep)
430 if common_util.is_target(jar_path, constant.TARGET_LIBS):
442 for jar in self.module_data[constant.KEY_CLASSES_JAR]:
457 if self._check_key(constant.KEY_INSTALLED):
458 for jar in self.module_data[constant.KEY_INSTALLED]:
487 if self._check_key(constant.KEY_JARS):
488 for jar_name in self.module_data[constant.KEY_JARS]:
489 if self._check_key(constant.KEY_INSTALLED):
579 if self.module_path != constant.FRAMEWORK_PATH:
580 self.dep_paths.append(constant.FRAMEWORK_PATH)
582 if self.module_path != constant.LIBCORE_PATH:
583 self.dep_paths.append(constant.LIBCORE_PATH)
584 for module in self.module_data.get(constant.KEY_DEPENDENCIES, []):