• Home
  • Raw
  • Download

Lines Matching refs:path

43   _EMMA_JAR = os.path.join("external", "emma", "lib", "emma.jar")
48 _CORE_TARGET_PATH = os.path.join("development", "testrunner",
52 _VENDOR_TARGET_PATH = os.path.join("vendor", "*", "tests", "testinfo",
56 _TARGET_INTERMEDIATES_BASE_PATH = os.path.join("target", "common",
62 self._output_root_path = os.path.join(self._out_path,
64 self._emma_jar_path = os.path.join(self._root_path, self._EMMA_JAR)
93 output_path = os.path.join(self._out_path,
100 coverage_local_path = os.path.join(output_path,
104 report_path = os.path.join(output_path,
150 input_metadata = os.path.join(self._GetBuildIntermediatePath(target),
156 return os.path.join(
171 for path in target_srcs:
172 src_list.append("-sp %s" % os.path.join(self._root_path, path))
201 combined_coverage = os.path.join(self._output_root_path,
204 report_path = os.path.join(self._output_root_path, "android")
213 output_path = os.path.join(self._output_root_path, target_name)
215 if os.path.isdir(output_path) and target is not None:
217 combined_coverage = os.path.join(output_path, "%s.%s" %
220 report_path = os.path.join(output_path, target_name)
233 file_pattern = os.path.join(root_path, "*", "*.%s" %
246 core_target_path = os.path.join(self._root_path, self._CORE_TARGET_PATH)
250 vendor_targets_pattern = os.path.join(self._root_path,
270 html_file_pattern = os.path.join(dir_path, "*.html")
276 sub_dir_path = os.path.join(dir_path, sub_dir_name)
277 if os.path.isdir(sub_dir_path):
294 def GetCoverageTargetForPath(self, path): argument
296 android_mk_path = os.path.join(path, "Android.mk")
297 if os.path.exists(android_mk_path):
298 android_mk_parser = android_mk.CreateAndroidMK(path)
300 target.SetBuildPath(os.path.join(path, "src"))
305 msg = "No Android.mk found at %s" % path