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

Lines Matching defs:CA

254     typedef A const CA;
260 runTestCase< R(CA&), 1, ConstCaster >();
261 runTestCase< R(CA&, CA&), 2, ConstCaster >();
262 runTestCase< R(CA&, CA&, CA&), 3, ConstCaster >();
292 runFunctorTestCase<R(CA&), 1, LValueCaster, CC>();
293 runFunctorTestCase<R(CA&) const, 1, ConstCaster, CC>();
294 runFunctorTestCase<R(CA&) volatile, 1, VolatileCaster, CC>();
295 runFunctorTestCase<R(CA&) const volatile, 1, CVCaster, CC>();
296 runFunctorTestCase<R(CA&, CA&), 2, LValueCaster, CC>();
297 runFunctorTestCase<R(CA&, CA&) const, 2, ConstCaster, CC>();
298 runFunctorTestCase<R(CA&, CA&) volatile, 2, VolatileCaster, CC>();
299 runFunctorTestCase<R(CA&, CA&) const volatile, 2, CVCaster, CC>();
300 runFunctorTestCase<R(CA&, CA&, CA&), 3, LValueCaster, CC>();
301 runFunctorTestCase<R(CA&, CA&, CA&) const, 3, ConstCaster, CC>();
302 runFunctorTestCase<R(CA&, CA&, CA&) volatile, 3, VolatileCaster, CC>();
303 runFunctorTestCase<R(CA&, CA&, CA&) const volatile, 3, CVCaster, CC>();