Searched defs:FooB (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/SemaCXX/
H A Dwarn-enum-compare.cpp3 enum Foo { FooA, FooB, FooC }; enumerator in enum:Foo
91 while (FooB == y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
92 while (FooB != y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
93 while (FooB >= y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
94 while (FooB <= y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
95 while (FooB > y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
96 while (FooB < y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
98 while (FooB == BarD); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
99 while (FooB != BarD); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
100 while (FooB >
[all...]
H A Dwarn-thread-safety-analysis.cpp534 LateFoo FooB; local

Completed in 111 milliseconds