Searched refs:property (Results 26 - 30 of 30) sorted by relevance

12

/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc1068 TestProperty property("key", "1");
1069 EXPECT_STREQ("key", property.key());
1070 EXPECT_STREQ("1", property.value());
1075 TestProperty property("key", "1");
1076 EXPECT_STREQ("1", property.value());
1077 property.SetValue("2");
1078 EXPECT_STREQ("2", property.value());
1318 const TestProperty property("key", "value");
1319 EXPECT_STREQ("key", property.key());
1320 EXPECT_STREQ("value", property
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h354 // Returns true iff the test name of test property matches on key_.
712 // context of a test or a test case, or to the global property set. If the
713 // result already contains a property with the same key, the value will be
1018 const TestProperty& property) {
1019 test_result->RecordProperty(xml_element, property);
1016 RecordProperty(TestResult* test_result, const std::string& xml_element, const TestProperty& property) argument
H A Dgtest.cc2035 // Returns the i-th test property. i can range from 0 to
2054 // Adds a test property to the list. If a property with the same key as the
2055 // supplied property is already represented, the value of this test_property
2154 // xml_element. Returns true if the property is valid.
3410 // delimited XML attributes based on the property key="value" pairs.
3740 // delimited XML attributes based on the property key="value" pairs.
3745 const TestProperty& property = result.GetTestProperty(i); local
3746 attributes << " " << property.key() << "="
3747 << "\"" << EscapeXmlAttribute(property
[all...]
/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h977 auto property = handle((PyObject *) (is_static ? get_internals().static_property_type local
979 attr(name) = property(fget.ptr() ? fget : none(),
1273 char *doc_prev = rec_fget->doc; /* 'extra' field may include a property-specific documentation string */
1400 auto property = handle((PyObject *) &PyProperty_Type); local
1417 m_base.attr("name") = property(cpp_function(
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h122 // a verb phrase that describes the property a value matching this
2233 // Implements the Property() matcher for matching a property
2238 // The property may have a reference type, so 'const PropertyType&'
2244 PropertyMatcher(PropertyType (Class::*property)() const,
2246 : property_(property), matcher_(matcher) {}
2249 *os << "is an object whose given property ";
2254 *os << "is an object whose given property ";
2272 *listener << "whose given property is ";
2292 // Since *p has a property method, it must be a class/struct/union
3907 // Creates a matcher that matches an object whose given property
[all...]

Completed in 37 milliseconds

12