Home | History | Annotate | Download | only in src

Lines Matching refs:xml_element

1734 void TestResult::RecordProperty(const std::string& xml_element,
1736 if (!ValidateTestProperty(xml_element, test_property)) {
1790 const std::string& xml_element) {
1791 if (xml_element == "testsuites") {
1793 } else if (xml_element == "testsuite") {
1795 } else if (xml_element == "testcase") {
1798 GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element;
1831 // xml_element. Returns true if the property is valid.
1832 bool TestResult::ValidateTestProperty(const std::string& xml_element,
1835 GetReservedAttributesForElement(xml_element));
4045 std::string xml_element;
4049 xml_element = "testcase";
4052 xml_element = "testsuite";
4055 xml_element = "testsuites";
4058 xml_element, test_property);