Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:ctb

14 void test_conv_to_bool(ConvToBool ctb, ConvToInt cti, ExplicitConvToBool ecb) {
15 if (ctb) { }
18 for (; ctb; ) { }
21 while (ctb) { };
24 do { } while (ctb);
28 if (!ctb) { }
33 if (ctb && ecb) { }
34 bool b2 = ctb && ecb;
35 if (ctb || ecb) { }
36 bool b3 = ctb || ecb;