Home | History | Annotate | Download | only in ADT

Lines Matching refs:Case

32 ///   .Case("red", Red)
33 /// .Case("orange", Orange)
34 /// .Case("yellow", Yellow)
35 /// .Case("green", Green)
36 /// .Case("blue", Blue)
37 /// .Case("indigo", Indigo)
55 StringSwitch& Case(const char (&S)[N], const T& Value) {
87 return Case(S0, Value).Case(S1, Value);
93 return Case(S0, Value).Case(S1, Value).Case(S2, Value);
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value);
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
108 .Case(S4, Value);