Home | History | Annotate | Download | only in src

Lines Matching refs:xml_element

1463                              const std::string& xml_element,
1465 test_result->RecordProperty(xml_element, property);
3234 void TestResult::RecordProperty(const std::string& xml_element,
3236 if (!ValidateTestProperty(xml_element, test_property)) {
3290 const std::string& xml_element) {
3291 if (xml_element == "testsuites") {
3293 } else if (xml_element == "testsuite") {
3295 } else if (xml_element == "testcase") {
3298 GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element;
3331 // xml_element. Returns true if the property is valid.
3332 bool TestResult::ValidateTestProperty(const std::string& xml_element,
3335 GetReservedAttributesForElement(xml_element));
5557 std::string xml_element;
5561 xml_element = "testcase";
5564 xml_element = "testsuite";
5567 xml_element = "testsuites";
5570 test_result->RecordProperty(xml_element, test_property);