Searched refs:negation (Results 1 - 10 of 10) sorted by relevance

/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-more-matchers.h48 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") {
H A Dgmock-generated-matchers.h1263 // special bool-typed variable named 'negation'. When 'negation' is
1265 // otherwise it should evaluate to the description of the negation of
1271 // string(negation ? "is not" : "is") + " in range [" +
1398 ::testing::internal::string FormatDescription(bool negation) const {\
1403 negation, #name, \
1447 ::testing::internal::string FormatDescription(bool negation) const {\
1452 negation, #name, \
1500 ::testing::internal::string FormatDescription(bool negation) const {\
1505 negation, #nam
[all...]
H A Dgmock-matchers.h128 // Describes the negation of this matcher to an ostream. For
269 // Describes the negation of this matcher to an ostream.
2969 // Describes what the negation of this matcher does.
3023 // Describes what the negation of this matcher does.
3144 // Describes what the negation of this matcher does.
3321 // Describes the negation of this UnorderedElementsAre matcher.
3371 // Describes what the negation of this matcher does.
3619 // 'negation' is false; otherwise returns the description of the
3620 // negation of the matcher. 'param_values' contains a list of strings
3622 GTEST_API_ string FormatMatcherDescription(bool negation,
[all...]
/gem5/ext/googletest/googlemock/src/
H A Dgmock-matchers.cc124 // 'negation' is false; otherwise returns the description of the
125 // negation of the matcher. 'param_values' contains a list of strings
127 GTEST_API_ string FormatMatcherDescription(bool negation, argument
133 return negation ? "not (" + result + ")" : result;
/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h69 // (e.g. std::negation) added in 2015u3:
472 /// Backports of std::bool_constant and std::negation to accommodate older compilers
474 template <typename T> struct negation : bool_constant<!T::value> { }; struct in inherits:bool_constant
488 template <class... Ts> using any_of = negation<all_of<negation<Ts>...>>;
495 template <class... Ts> using none_of = negation<any_of<Ts...>>;
/gem5/ext/pybind11/include/pybind11/
H A Deigen.h62 template <typename T> using is_eigen_dense_plain = all_of<negation<is_eigen_dense_map<T>>, is_template_base_of<Eigen::PlainObjectBase, T>>;
70 negation<any_of<is_eigen_dense_map<T>, is_eigen_dense_plain<T>, is_eigen_sparse<T>>>
H A Dcast.h780 negation<std::is_same<Container, typename Container::value_type>>
1599 negation<is_copy_constructible<T>>,
1606 negation<move_always<T>>,
H A Dstl_bind.h280 template <typename Vector> using vector_needs_copy = negation<
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc92 // Returns the description of the negation of the given matcher.
739 // This also tests that the description string can reference 'negation'.
740 MATCHER(IsEven2, negation ? "is odd" : "is even") {
755 string(negation ? "doesn't equal" : "equals") + " the sum of " +
770 // Tests that the matcher description can reference 'negation' and the
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc1001 // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
1003 AssertionResult negation(!success_);
1005 negation << *message_;
1006 return negation;

Completed in 79 milliseconds