• Home
  • Raw
  • Download

Lines Matching refs:self

44   def Parse(self, element):  argument
67 def _ParseCommonAttributes(self, suite_element, test_suite): argument
68 test_suite.SetName(self._ParseAttribute(suite_element, self._NAME_ATTR,
70 test_suite.SetBuildPath(self._ParseAttribute(suite_element,
71 self._BUILD_ATTR, True))
72 test_suite.SetContinuous(self._ParseAttribute(suite_element,
73 self._CONTINUOUS_ATTR,
75 test_suite.SetSuite(self._ParseAttribute(suite_element, self._SUITE_ATTR, False,
77 test_suite.SetDescription(self._ParseAttribute(suite_element,
78 self._DESCRIPTION_ATTR,
81 test_suite.SetExtraBuildArgs(self._ParseAttribute(
82 suite_element, self._EXTRA_BUILD_ARGS_ATTR, False, default_value=''))
83 test_suite.SetIsFullMake(self._ParseAttribute(
84 suite_element, self._FULL_MAKE_ATTR, False, default_value=False))
87 def _ParseAttribute(self, suite_element, attribute_name, mandatory, argument
93 (attribute_name, self.TAG_NAME))
111 def Parse(self, suite_element): argument
114 XmlSuiteParser._ParseCommonAttributes(self, suite_element, suite)
115 suite.SetPackageName(self._ParseAttribute(suite_element, self._PKG_ATTR,
117 suite.SetRunnerName(self._ParseAttribute(
118 suite_element, self._RUNNER_ATTR, False,
120 suite.SetClassName(self._ParseAttribute(suite_element, self._CLASS_ATTR,
122 suite.SetTargetName(self._ParseAttribute(suite_element, self._TARGET_ATTR,
132 def Parse(self, suite_element): argument
135 XmlSuiteParser._ParseCommonAttributes(self, suite_element, suite)
149 def Parse(self, suite_element): argument
152 XmlSuiteParser._ParseCommonAttributes(self, suite_element, suite)
153 suite.SetClassName(self._ParseAttribute(suite_element, self._CLASS_ATTR,
155 suite.SetJarName(self._ParseAttribute(suite_element, self._JAR_ATTR, True))