Lines Matching refs:B1
10 enum Baz {B1, B2, B3}; enumerator
14 enum Baz {B1, B2, B3}; enumerator
18 using name1::B1;
40 while (B1 == name1::B2); in test()
41 while (B2 == name2::B1); in test()
55 while ((B1) == (name1::B2)); in test()
56 while ((B2) == (name2::B1)); in test()
65 while ((((((B1))))) == (((name1::B2)))); in test()
66 while (B2 == ((((((name2::B1))))))); in test()
68 …while (B1 == B2); // expected-warning {{comparison of two values with different enumeration types… in test()
72 …while (((((B1)))) == B2); // expected-warning {{comparison of two values with different enumerati… in test()
76 …while ((((B1))) == (((B2)))); // expected-warning {{comparison of two values with different enume… in test()