Home
last modified time | relevance | path

Searched refs:ExpectedType (Results 1 – 25 of 507) sorted by relevance

12345678910>>...21

/dports/math/ogdf/OGDF/test/include/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/
H A Dequalscontainerconstraint.h22 template<typename ExpectedType, typename BinaryPredicate>
25 EqualsContainerConstraint(const ExpectedType& expected, const BinaryPredicate predicate) in EqualsContainerConstraint()
34 typename ExpectedType::const_iterator expected_it; in operator()
47 const ExpectedType expected_;
59 template<typename ExpectedType>
60 …aint<ExpectedType, bool (*)(const typename ExpectedType::value_type&, const typename ExpectedType:… in EqualsContainer()
62 …urn EqualsContainerConstraint<ExpectedType, bool (*)(const typename ExpectedType::value_type&, con… in EqualsContainer()
65 template<typename ExpectedType, typename BinaryPredicate>
66 …inline EqualsContainerConstraint<ExpectedType, BinaryPredicate> EqualsContainer(const ExpectedType in EqualsContainer()
71 template<typename ExpectedType, typename BinaryPredicate>
[all …]
H A Dcontainsconstraint.h19 template<typename ExpectedType>
29 template<typename ExpectedType>
36 template<typename ExpectedType>
37 struct ContainsConstraint : Expression<ContainsConstraint<ExpectedType> >
39 ContainsConstraint(const ExpectedType& expected)
55 ExpectedType m_expected;
58 template<typename ExpectedType>
59 inline ContainsConstraint<ExpectedType> Contains(const ExpectedType& expected)
61 return ContainsConstraint<ExpectedType>(expected);
69 template<typename ExpectedType>
[all …]
H A Dstartswithconstraint.h13 template<typename ExpectedType>
14 struct StartsWithConstraint : Expression<StartsWithConstraint<ExpectedType> >
16 StartsWithConstraint(const ExpectedType& expected) in StartsWithConstraint()
26 ExpectedType m_expected;
29 template<typename ExpectedType>
30 inline StartsWithConstraint<ExpectedType> StartsWith(const ExpectedType& expected) in StartsWith()
32 return StartsWithConstraint<ExpectedType>(expected); in StartsWith()
40 template<typename ExpectedType>
41 struct Stringizer<StartsWithConstraint<ExpectedType> >
43 static std::string ToString(const StartsWithConstraint<ExpectedType>& constraint)
H A Dislessthanconstraint.h13 template<typename ExpectedType>
14 struct IsLessThanConstraint : Expression<IsLessThanConstraint<ExpectedType> >
16 IsLessThanConstraint(const ExpectedType& expected) in IsLessThanConstraint()
27 ExpectedType m_expected;
30 template<typename ExpectedType>
31 inline IsLessThanConstraint<ExpectedType> IsLessThan(const ExpectedType& expected) in IsLessThan()
33 return IsLessThanConstraint<ExpectedType>(expected); in IsLessThan()
41 template<typename ExpectedType>
42 struct Stringizer<IsLessThanConstraint<ExpectedType> >
44 static std::string ToString(const IsLessThanConstraint<ExpectedType>& constraint)
H A Disgreaterthanconstraint.h13 template<typename ExpectedType>
14 struct IsGreaterThanConstraint : Expression<IsGreaterThanConstraint<ExpectedType> >
16 IsGreaterThanConstraint(const ExpectedType& expected) in IsGreaterThanConstraint()
27 ExpectedType m_expected;
30 template<typename ExpectedType>
31 inline IsGreaterThanConstraint<ExpectedType> IsGreaterThan(const ExpectedType& expected) in IsGreaterThan()
33 return IsGreaterThanConstraint<ExpectedType>(expected); in IsGreaterThan()
41 template<typename ExpectedType>
42 struct Stringizer<IsGreaterThanConstraint<ExpectedType> >
44 static std::string ToString(const IsGreaterThanConstraint<ExpectedType>& constraint)
H A Disgreaterthanorequaltoconstraint.h13 template<typename ExpectedType>
14 …ruct IsGreaterThanOrEqualToConstraint : Expression<IsGreaterThanOrEqualToConstraint<ExpectedType> >
16 IsGreaterThanOrEqualToConstraint(const ExpectedType& expected) in IsGreaterThanOrEqualToConstraint()
27 ExpectedType m_expected;
30 template<typename ExpectedType>
31 …inline IsGreaterThanOrEqualToConstraint<ExpectedType> IsGreaterThanOrEqualTo(const ExpectedType& e… in IsGreaterThanOrEqualTo()
33 return IsGreaterThanOrEqualToConstraint<ExpectedType>(expected); in IsGreaterThanOrEqualTo()
41 template<typename ExpectedType>
42 struct Stringizer<IsGreaterThanOrEqualToConstraint<ExpectedType> >
44 static std::string ToString(const IsGreaterThanOrEqualToConstraint<ExpectedType>& constraint)
H A Dislessthanorequaltoconstraint.h13 template<typename ExpectedType>
14 struct IsLessThanOrEqualToConstraint : Expression<IsLessThanOrEqualToConstraint<ExpectedType> >
16 IsLessThanOrEqualToConstraint(const ExpectedType& expected) in IsLessThanOrEqualToConstraint()
27 ExpectedType m_expected;
30 template<typename ExpectedType>
31 …inline IsLessThanOrEqualToConstraint<ExpectedType> IsLessThanOrEqualTo(const ExpectedType& expecte… in IsLessThanOrEqualTo()
33 return IsLessThanOrEqualToConstraint<ExpectedType>(expected); in IsLessThanOrEqualTo()
41 template<typename ExpectedType>
42 struct Stringizer<IsLessThanOrEqualToConstraint<ExpectedType> >
44 static std::string ToString(const IsLessThanOrEqualToConstraint<ExpectedType>& constraint)
H A Dendswithconstraint.h13 template<typename ExpectedType>
14 struct EndsWithConstraint : Expression<EndsWithConstraint<ExpectedType> >
16 EndsWithConstraint(const ExpectedType& expected) in EndsWithConstraint()
27 ExpectedType m_expected;
30 template<typename ExpectedType>
31 inline EndsWithConstraint<ExpectedType> EndsWith(const ExpectedType& expected) in EndsWith()
33 return EndsWithConstraint<ExpectedType>(expected); in EndsWith()
41 template<typename ExpectedType>
42 struct Stringizer<EndsWithConstraint<ExpectedType> >
44 static std::string ToString(const EndsWithConstraint<ExpectedType>& constraint)
H A Dhaslengthconstraint.h13 template<typename ExpectedType>
14 struct HasLengthConstraint : Expression<HasLengthConstraint<ExpectedType> >
16 HasLengthConstraint(const ExpectedType& expected) in HasLengthConstraint()
29 ExpectedType m_expected;
32 template<typename ExpectedType>
33 inline HasLengthConstraint<ExpectedType> HasLength(const ExpectedType& expected) in HasLength()
35 return HasLengthConstraint<ExpectedType>(expected); in HasLength()
43 template<typename ExpectedType>
44 struct Stringizer<HasLengthConstraint<ExpectedType> >
46 static std::string ToString(const HasLengthConstraint<ExpectedType>& constraint)
H A Dequalswithdeltaconstraint.h13 template<typename ExpectedType, typename DeltaType>
14 struct EqualsWithDeltaConstraint : Expression<EqualsWithDeltaConstraint<ExpectedType, DeltaType> >
16 EqualsWithDeltaConstraint(const ExpectedType& expected, const DeltaType& delta) in EqualsWithDeltaConstraint()
27 ExpectedType m_expected;
31 template<typename ExpectedType, typename DeltaType>
32 …inline EqualsWithDeltaConstraint<ExpectedType, DeltaType> EqualsWithDelta(const ExpectedType& expe… in EqualsWithDelta()
34 return EqualsWithDeltaConstraint<ExpectedType, DeltaType>(expected, delta); in EqualsWithDelta()
37 template<typename ExpectedType, typename DeltaType>
38 struct Stringizer<EqualsWithDeltaConstraint<ExpectedType, DeltaType> >
40 … static std::string ToString(const EqualsWithDeltaConstraint<ExpectedType, DeltaType>& constraint)
H A Dequalsconstraint.h13 template<typename ExpectedType>
14 struct EqualsConstraint : Expression<EqualsConstraint<ExpectedType> >
16 EqualsConstraint(const ExpectedType& expected) in EqualsConstraint()
27 ExpectedType m_expected;
30 template<typename ExpectedType>
31 inline EqualsConstraint<ExpectedType> Equals(const ExpectedType& expected) in Equals()
33 return EqualsConstraint<ExpectedType>(expected); in Equals()
67 template<typename ExpectedType>
68 struct Stringizer<EqualsConstraint<ExpectedType> >
70 static std::string ToString(const EqualsConstraint<ExpectedType>& constraint)
/dports/math/ogdf/OGDF/test/include/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/
H A Dexpressionbuilder.h43 template<typename ExpectedType>
45 EqualTo(const ExpectedType& expected) in EqualTo()
108 template<typename ExpectedType>
120 template<typename ExpectedType>
132 template<typename ExpectedType>
144 template<typename ExpectedType>
156 template<typename ExpectedType>
174 template<typename ExpectedType>
192 template<typename ExpectedType>
210 template<typename ExpectedType>
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/geometry/test/util/
H A Dcalculation_type.cpp46 typename ExpectedType
61 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test()
66 << " expected: " << typeid(ExpectedType).name() in test()
76 typename ExpectedType
91 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_with_calculation_type()
95 << " expected: " << typeid(ExpectedType).name() in test_with_calculation_type()
105 typename ExpectedType
117 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_unary()
122 << " expected: " << typeid(ExpectedType).name() in test_unary()
135 typename ExpectedType
[all …]
H A Dselect_most_precise.cpp23 template <typename T1, typename T2, typename ExpectedType>
27 bool is_same = boost::is_same<type, ExpectedType>::type::value; in test()
35 … "ExpectedType: {" << typeid(ExpectedType).name() << " | s: " << sizeof(ExpectedType) << "}"); in test()
/dports/devel/boost-python-libs/boost_1_72_0/libs/geometry/test/util/
H A Dcalculation_type.cpp46 typename ExpectedType
61 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test()
66 << " expected: " << typeid(ExpectedType).name() in test()
76 typename ExpectedType
91 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_with_calculation_type()
95 << " expected: " << typeid(ExpectedType).name() in test_with_calculation_type()
105 typename ExpectedType
117 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_unary()
122 << " expected: " << typeid(ExpectedType).name() in test_unary()
135 typename ExpectedType
[all …]
H A Dselect_most_precise.cpp23 template <typename T1, typename T2, typename ExpectedType>
27 bool is_same = boost::is_same<type, ExpectedType>::type::value; in test()
35 … "ExpectedType: {" << typeid(ExpectedType).name() << " | s: " << sizeof(ExpectedType) << "}"); in test()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/geometry/test/util/
H A Dcalculation_type.cpp46 typename ExpectedType
61 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test()
66 << " expected: " << typeid(ExpectedType).name() in test()
76 typename ExpectedType
91 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_with_calculation_type()
95 << " expected: " << typeid(ExpectedType).name() in test_with_calculation_type()
105 typename ExpectedType
117 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_unary()
122 << " expected: " << typeid(ExpectedType).name() in test_unary()
135 typename ExpectedType
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/geometry/test/util/
H A Dcalculation_type.cpp46 typename ExpectedType
61 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test()
66 << " expected: " << typeid(ExpectedType).name() in test()
76 typename ExpectedType
91 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_with_calculation_type()
95 << " expected: " << typeid(ExpectedType).name() in test_with_calculation_type()
105 typename ExpectedType
117 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_unary()
122 << " expected: " << typeid(ExpectedType).name() in test_unary()
135 typename ExpectedType
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/geometry/test/util/
H A Dcalculation_type.cpp46 typename ExpectedType
61 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test()
66 << " expected: " << typeid(ExpectedType).name() in test()
76 typename ExpectedType
91 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_with_calculation_type()
95 << " expected: " << typeid(ExpectedType).name() in test_with_calculation_type()
105 typename ExpectedType
117 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_unary()
122 << " expected: " << typeid(ExpectedType).name() in test_unary()
135 typename ExpectedType
[all …]
/dports/databases/xtrabackup/boost_1_59_0/libs/geometry/test/util/
H A Dcalculation_type.cpp46 typename ExpectedType
61 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test()
66 << " expected: " << typeid(ExpectedType).name() in test()
76 typename ExpectedType
91 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_with_calculation_type()
95 << " expected: " << typeid(ExpectedType).name() in test_with_calculation_type()
105 typename ExpectedType
117 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_unary()
122 << " expected: " << typeid(ExpectedType).name() in test_unary()
135 typename ExpectedType
[all …]
/dports/databases/percona57-client/boost_1_59_0/libs/geometry/test/util/
H A Dcalculation_type.cpp46 typename ExpectedType
61 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test()
66 << " expected: " << typeid(ExpectedType).name() in test()
76 typename ExpectedType
91 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_with_calculation_type()
95 << " expected: " << typeid(ExpectedType).name() in test_with_calculation_type()
105 typename ExpectedType
117 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_unary()
122 << " expected: " << typeid(ExpectedType).name() in test_unary()
135 typename ExpectedType
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/geometry/test/util/
H A Dcalculation_type.cpp46 typename ExpectedType
61 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test()
66 << " expected: " << typeid(ExpectedType).name() in test()
76 typename ExpectedType
91 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_with_calculation_type()
95 << " expected: " << typeid(ExpectedType).name() in test_with_calculation_type()
105 typename ExpectedType
117 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_unary()
122 << " expected: " << typeid(ExpectedType).name() in test_unary()
135 typename ExpectedType
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/geometry/test/util/
H A Dcalculation_type.cpp46 typename ExpectedType
61 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test()
66 << " expected: " << typeid(ExpectedType).name() in test()
76 typename ExpectedType
91 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_with_calculation_type()
95 << " expected: " << typeid(ExpectedType).name() in test_with_calculation_type()
105 typename ExpectedType
117 BOOST_CHECK_MESSAGE((boost::is_same<type, ExpectedType>::type::value), in test_unary()
122 << " expected: " << typeid(ExpectedType).name() in test_unary()
135 typename ExpectedType
[all …]
/dports/devel/onetbb/oneTBB-2021.4.0/test/tbb/
H A Dtest_continue_node.cpp315 template <typename ExpectedType, typename Body>
321 static_assert(std::is_same_v<decltype(c1), continue_node<ExpectedType>>); in test_deduction_guides_common()
324 static_assert(std::is_same_v<decltype(c2), continue_node<ExpectedType, lightweight>>); in test_deduction_guides_common()
327 static_assert(std::is_same_v<decltype(c3), continue_node<ExpectedType>>); in test_deduction_guides_common()
333 static_assert(std::is_same_v<decltype(c5), continue_node<ExpectedType>>); in test_deduction_guides_common()
339 static_assert(std::is_same_v<decltype(c7), continue_node<ExpectedType>>); in test_deduction_guides_common()
348 static_assert(std::is_same_v<decltype(c9), continue_node<ExpectedType>>); in test_deduction_guides_common()
354 static_assert(std::is_same_v<decltype(c11), continue_node<ExpectedType>>); in test_deduction_guides_common()
360 static_assert(std::is_same_v<decltype(c13), continue_node<ExpectedType>>); in test_deduction_guides_common()
366 static_assert(std::is_same_v<decltype(c15), continue_node<ExpectedType>>); in test_deduction_guides_common()
[all …]
/dports/cad/ghdl/ghdl-1.0.0/testsuite/gna/issue202/
H A DScoreboardGenericPkg.vhd29 -- 05/2012 2012.05 Changed FIFO to store pointers to ExpectedType
73 type ExpectedType ;
76 Expected : ExpectedType) return boolean ; -- is "=" ;
77 function expected_to_string(A : ExpectedType) return string ; -- is to_string ;
85 -- subtype ExpectedType is std_logic_vector ;
87 -- alias Match is std_match [ActualType, ExpectedType return boolean] ; -- for std_logic_vector
88 -- alias expected_to_string is to_hstring [ExpectedType return string]; -- VHDL-2008
102 procedure Push (Item : in ExpectedType) ;
117 procedure Push (Item : in ExpectedType) is

12345678910>>...21