Home
last modified time | relevance | path

Searched refs:GetAttributes (Results 1 – 8 of 8) sorted by relevance

/test/vti/test_serving/gae/webapp/src/endpoint/
Dendpoint_base_test.py50 result = self.eb.GetAttributes(job_message, assigned_only=True)
58 result = self.eb.GetAttributes(job, assigned_only=True)
80 result = self.eb.GetAttributes(job_message, assigned_only=False)
103 result = self.eb.GetAttributes(job, assigned_only=False)
Dendpoint_base.py56 resource_attrs = self.GetAttributes(resource, assigned_only=True)
57 reference_attrs = self.GetAttributes(reference)
60 def GetAttributes(self, value, assigned_only=False): member in EndpointBase
281 model_properties = self.GetAttributes(metaclass)
/test/framework/harnesses/host_controller/command_processor/
Dcommand_retry.py214 result_attrs = xml_utils.GetAttributes(
218 summary_attrs = xml_utils.GetAttributes(
282 summary_after_retry = xml_utils.GetAttributes(
Dcommand_upload.py218 result_attrs = xml_utils.GetAttributes(
226 build_attrs = xml_utils.GetAttributes(
232 summary_attrs = xml_utils.GetAttributes(
Dcommand_test.py201 result = xml_utils.GetAttributes(
Dcommand_sheet.py182 ref_build_attrs = xml_utils.GetAttributes(
Dcommand_upload_test.py152 mock_xml_util.GetAttributes.return_value = {
/test/framework/harnesses/host_controller/utils/parser/
Dxml_utils.py22 def GetAttributes(xml_file, tag, attrs): function