Home | History | Annotate | Download | only in src

Lines Matching defs:property

763   // Returns true iff the test name of test property matches on key_.
1131 // context of a test or a test case, or to the global property set. If the
1132 // result already contains a property with the same key, the value will be
1464 const TestProperty& property) {
1465 test_result->RecordProperty(xml_element, property);
3212 // Returns the i-th test property. i can range from 0 to
3231 // Adds a test property to the list. If a property with the same key as the
3232 // supplied property is already represented, the value of this test_property
3331 // xml_element. Returns true if the property is valid.
4581 // delimited XML attributes based on the property key="value" pairs.
4906 // delimited XML attributes based on the property key="value" pairs.
4911 const TestProperty& property = result.GetTestProperty(i);
4912 attributes << " " << property.key() << "="
4913 << "\"" << EscapeXmlAttribute(property.value()) << "\"";
5349 // from SetUpTestCase or TearDownTestCase, or to the global property set
5350 // when invoked elsewhere. If the result already contains a property with
5553 // from SetUpTestCase/TearDownTestCase, or to the global property set
5554 // otherwise. If the result already contains a property with the same key,
5558 TestResult* test_result; // TestResult appropriate for property recording.