Lines Matching refs:check_call

34     assert(Fn::check_call<>(CT_NonConst | CT_LValue));  in test_call_operator_forwarding()
36 assert(Fn::check_call<>(CT_Const | CT_LValue)); in test_call_operator_forwarding()
38 assert(Fn::check_call<>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding()
40 assert(Fn::check_call<>(CT_Const | CT_RValue)); in test_call_operator_forwarding()
46 assert(Fn::check_call<int &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding()
48 assert(Fn::check_call<int &>(CT_Const | CT_LValue)); in test_call_operator_forwarding()
50 assert(Fn::check_call<int &>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding()
52 assert(Fn::check_call<int &>(CT_Const | CT_RValue)); in test_call_operator_forwarding()
58 assert(Fn::check_call<long &>(CT_NonConst | CT_LValue)); in test_call_operator_forwarding()
60 assert(Fn::check_call<long &>(CT_Const | CT_LValue)); in test_call_operator_forwarding()
62 assert(Fn::check_call<long &>(CT_NonConst | CT_RValue)); in test_call_operator_forwarding()
64 assert(Fn::check_call<long &>(CT_Const | CT_RValue)); in test_call_operator_forwarding()
72 assert((Fn::check_call<long &, std::string &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding()
74 assert((Fn::check_call<long &, std::string &>(CT_Const | CT_LValue))); in test_call_operator_forwarding()
76 assert((Fn::check_call<long &, std::string &>(CT_NonConst | CT_RValue))); in test_call_operator_forwarding()
78 assert((Fn::check_call<long &, std::string &>(CT_Const | CT_RValue))); in test_call_operator_forwarding()
84 assert((Fn::check_call<long &, std::string &, int &, double &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding()
86 assert((Fn::check_call<long &, std::string &, int &, double &>(CT_Const | CT_LValue))); in test_call_operator_forwarding()
88 assert((Fn::check_call<long &, std::string &, int &, double &>(CT_NonConst | CT_RValue))); in test_call_operator_forwarding()
90 assert((Fn::check_call<long &, std::string &, int &, double &>(CT_Const | CT_RValue))); in test_call_operator_forwarding()
96 assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_NonConst | CT_LValue))); in test_call_operator_forwarding()
98 assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_Const | CT_LValue))); in test_call_operator_forwarding()
100 assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_NonConst | CT_RValue))); in test_call_operator_forwarding()
102 assert((Fn::check_call<long &, std::string &, int *&, double &>(CT_Const | CT_RValue))); in test_call_operator_forwarding()
115 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
117 assert(Fn::check_call<const int &>(Val)); in test_argument_forwarding()
119 assert(Fn::check_call<int &&>(Val)); in test_argument_forwarding()
121 assert(Fn::check_call<const int &&>(Val)); in test_argument_forwarding()
130 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
132 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
134 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
136 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
144 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
146 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
148 assert(Fn::check_call<int &&>(Val)); in test_argument_forwarding()
150 assert(Fn::check_call<int &&>(Val)); in test_argument_forwarding()
157 assert((Fn::check_call<int &, std::string &, long &>(Val))); in test_argument_forwarding()
159 assert((Fn::check_call<const int &, const std::string &, long &&>(Val))); in test_argument_forwarding()
165 assert((Fn::check_call<long &, std::string &, int &, double &>(Val))); in test_argument_forwarding()
167 assert((Fn::check_call<const long &, const std::string &, int &&, double &&>(Val))); in test_argument_forwarding()
173 assert((Fn::check_call<long &, std::string &, int *&, double &>(Val))); in test_argument_forwarding()
175 assert((Fn::check_call<const long &, const std::string &, int *&&, double &&>(Val))); in test_argument_forwarding()