Lines Matching refs:targets
39 coverage results for a pre-defined set of tests and targets
110 def _GenerateReport(self, report_path, coverage_file_path, targets,
117 targets: list of CoverageTargets to use as base for code coverage
125 input_metadatas = self._GatherMetadatas(targets)
128 src_arg = self._GatherSrcs(targets)
139 def _GatherMetadatas(self, targets):
140 """Builds the emma input metadata argument from provided targets.
143 targets: list of CoverageTargets
149 for target in targets:
160 def _GatherSrcs(self, targets):
161 """Builds the emma input source path arguments from provided targets.
164 targets: list of CoverageTargets
169 for target in targets:
242 a CoverageTargets object that contains set of parsed targets.
248 targets = coverage_targets.CoverageTargets()
249 targets.Parse(core_target_path)
254 targets.Parse(target_file_path)
255 return targets
281 """Create combined coverage reports for all targets and tests."""