Lines Matching refs:self

45   def Parse(self, element):  argument
68 def _ParseCommonAttributes(self, suite_element, test_suite): argument
69 test_suite.SetName(self._ParseAttribute(suite_element, self._NAME_ATTR,
71 test_suite.SetBuildPath(self._ParseAttribute(suite_element,
72 self._BUILD_ATTR, True))
73 test_suite.SetContinuous(self._ParseAttribute(suite_element,
74 self._CONTINUOUS_ATTR,
76 test_suite.SetIsGrantedPermissions(self._ParseAttribute(suite_element,
77 self._GRANTED_PERMISSIONS_ATTR,
79 test_suite.SetSuite(self._ParseAttribute(suite_element, self._SUITE_ATTR, False,
81 test_suite.SetDescription(self._ParseAttribute(suite_element,
82 self._DESCRIPTION_ATTR,
85 test_suite.SetExtraBuildArgs(self._ParseAttribute(
86 suite_element, self._EXTRA_BUILD_ARGS_ATTR, False, default_value=''))
87 test_suite.SetIsFullMake(self._ParseAttribute(
88 suite_element, self._FULL_MAKE_ATTR, False, default_value=False))
91 def _ParseAttribute(self, suite_element, attribute_name, mandatory, argument
99 (attribute_name, self.TAG_NAME))
117 def Parse(self, suite_element): argument
120 XmlSuiteParser._ParseCommonAttributes(self, suite_element, suite)
121 suite.SetPackageName(self._ParseAttribute(suite_element, self._PKG_ATTR,
123 suite.SetRunnerName(self._ParseAttribute(
124 suite_element, self._RUNNER_ATTR, False,
126 suite.SetClassName(self._ParseAttribute(suite_element, self._CLASS_ATTR,
128 suite.SetTargetName(self._ParseAttribute(suite_element, self._TARGET_ATTR,
138 def Parse(self, suite_element): argument
141 XmlSuiteParser._ParseCommonAttributes(self, suite_element, suite)
155 def Parse(self, suite_element): argument
158 XmlSuiteParser._ParseCommonAttributes(self, suite_element, suite)
159 suite.SetClassName(self._ParseAttribute(suite_element, self._CLASS_ATTR,
161 suite.SetJarName(self._ParseAttribute(suite_element, self._JAR_ATTR, True))