Lines Matching full:switch
4 default: z--; // expected-error {{statement not in switch}}
9 switch (X) {
26 // empty switch;
27 switch (0); // expected-warning {{no case matching constant switch condition '0'}}
35 switch (cond) {
41 switch(cond) {
47 switch (cond) {
52 switch (cond) {
57 switch (cond) {
64 switch(z) {
66 default: // expected-error {{multiple default labels in one switch}}
73 switch(ch) {
81 switch (va) { // expected-error{{use of undeclared identifier 'va'}}
95 switch(a) { //expected-warning{{enumeration value 'B' not handled in switch}}
99 switch(a) {
104 switch(a) {
110 switch(a) {
117 switch(a) {
121 switch(a) {
125 switch(a) {
129 switch(a) {
143 switch(a) {
148 switch(a) {
153 switch(a) { //expected-warning{{enumeration value 'B' not handled in switch}}
164 switch(a) {
181 switch(a) {
200 switch(a) { //expected-warning{{enumeration value 'A' not handled in switch}}
206 switch(a) {
221 switch(a) {
236 switch(t) { // expected-warning{{enumeration value 'val3' not handled in switch}}
252 switch(a) {
260 switch (x) {
268 switch (1) { // expected-warning {{no case matching constant switch condition '1'}}
276 switch (c) { // expected-warning {{no case matching constant switch condition '53'}}
283 switch (x >= 17) { // expected-warning {{switch condition has boolean value}}
287 switch ((int) (x <= 17)) {