Lines Matching refs:os

23 import os
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(
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")
211 target_dirs = os.listdir(self._output_root_path)
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")
273 os.system("tidy -m -errors -quiet %s" % html_file_path)
274 sub_dirs = os.listdir(dir_path)
276 sub_dir_path = os.path.join(dir_path, sub_dir_name)
277 if os.path.isdir(sub_dir_path):
296 android_mk_path = os.path.join(path, "Android.mk")
297 if os.path.exists(android_mk_path):
300 target.SetBuildPath(os.path.join(path, "src"))
311 os.environ["EMMA_INSTRUMENT"] = "true"