Home | History | Annotate | Download | only in testrunner

Lines Matching full:target

25   """Accessor for the code coverage target xml file 
28 <target
35 >/target>
49 """Parse the coverage target data from from given file path, and add it to
69 target = CoverageTarget(target_element)
70 self._AddTarget(target)
72 def _AddTarget(self, target):
73 self._target_map[target.GetName()] = target
76 """ returns list of target names """
78 for target in self:
79 build_targets.append(target.GetName())
94 """ Represents one coverage target definition parsed from xml """