Lines Matching +defs:m +defs:B
202 T templated(T m) __attribute__((enable_if(true, ""))) { return T(); } in templated()
204 T templated(T m) __attribute__((enable_if(false, ""))) { return T(); } in templated()
214 T templatedBar(T m) __attribute__((enable_if(m > 0, ""))) { return T(); } in templatedBar()
224 T templatedConflict(T m) __attribute__((enable_if(false, ""))) { return T(); } in templatedConflict()
226 T templatedConflict(T m) __attribute__((enable_if(true, ""))) { return T(); } in templatedConflict()
228 T templatedConflict(T m) __attribute__((enable_if(1, ""))) { return T(); } in templatedConflict()
269 auto B = reinterpret_cast<VoidFooTy>(foo); in testIt() local
286 auto B = (VoidFooTy)foo; in testItCStyle() local
312 …auto B = reinterpret_cast<CharFooTy>(foo); // expected-error{{reinterpret_cast cannot resolve over… in testIt() local
325 constexpr auto B = (CharFooTy)foo; in testItCStyle() local
417 constexpr int B = callTemplated<0>(); // expected-error{{initialized by a constant expression}} exp… variable