Lines Matching full:case
16 case -1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'break;' to avoid fall-through}}
18 case 0: {// expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'break;' to avoid fall-through}}
20 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'break;' to avoid fall-through}}
22 case 3: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'break;' to avoid fall-through}}
25 case 4: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'break;' to avoid fall-through}}
28 case 5: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'break;' to avoid fall-through}}
30 case 111:
32 case 112:
34 case 113:
37 case 6: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'break;' to avoid fall-through}}
41 case 11:
42 case 12: // no warning here, intended fall-through, no statement between labels
46 case 13:
52 case 15: // no warning here, there's no fall-through
56 case 17: {
63 case 19: { // no warning here, there's no fall-through
67 case 21: { // no warning here, there's no fall-through
70 case 23: // no warning here, there's no fall-through
73 case 25: // no warning here, there's no fall-through
87 case 0:
97 #define MY_SWITCH(X, Y, Z, U, V) switch (X) { case Y: Z; case U: V; }
99 #define MY_CASE(X, Y) case X: Y
100 #define MY_CASE2(X, Y, U, V) case X: Y; case U: V