Lines Matching refs:xml_element
1424 const std::string& xml_element, in RecordProperty() argument
1426 test_result->RecordProperty(xml_element, property); in RecordProperty()
3505 void TestResult::RecordProperty(const std::string& xml_element, in RecordProperty() argument
3507 if (!ValidateTestProperty(xml_element, test_property)) { in RecordProperty()
3561 const std::string& xml_element) { in GetReservedAttributesForElement() argument
3562 if (xml_element == "testsuites") { in GetReservedAttributesForElement()
3564 } else if (xml_element == "testsuite") { in GetReservedAttributesForElement()
3566 } else if (xml_element == "testcase") { in GetReservedAttributesForElement()
3569 GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element; in GetReservedAttributesForElement()
3603 bool TestResult::ValidateTestProperty(const std::string& xml_element, in ValidateTestProperty() argument
3606 GetReservedAttributesForElement(xml_element)); in ValidateTestProperty()
5825 std::string xml_element; in RecordProperty() local
5829 xml_element = "testcase"; in RecordProperty()
5832 xml_element = "testsuite"; in RecordProperty()
5835 xml_element = "testsuites"; in RecordProperty()
5838 test_result->RecordProperty(xml_element, test_property); in RecordProperty()