Home | History | Annotate | Download | only in func.require

Lines Matching refs:C_

139         runTest<Expect &>              (M, C_<T&>(obj),                expect);
140 runTest<Expect const&> (M, C_<T const&>(obj), expect);
141 runTest<Expect volatile&> (M, C_<T volatile&>(obj), expect);
142 runTest<Expect const volatile&>(M, C_<T const volatile&>(obj), expect);
144 runTest<Expect&&> (M, C_<T&&>(obj), expect);
145 runTest<Expect const&&> (M, C_<T const&&>(obj), expect);
146 runTest<Expect volatile&&> (M, C_<T volatile&&>(obj), expect);
147 runTest<Expect const volatile&&>(M, C_<T const volatile&&>(obj), expect);
161 runTest<Expect&>(M, C_<T &>(obj), expect);
162 runTest<Expect&>(M, C_<T const&>(obj), expect);
163 runTest<Expect&>(M, C_<T volatile&>(obj), expect);
164 runTest<Expect&>(M, C_<T const volatile&>(obj), expect);
166 runTest<Expect&>(M, C_<T&&>(obj), expect);
167 runTest<Expect&>(M, C_<T const&&>(obj), expect);
168 runTest<Expect&>(M, C_<T volatile&&>(obj), expect);
169 runTest<Expect&>(M, C_<T const volatile&&>(obj), expect);