OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FooB
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/SemaCXX/
warn-enum-compare.cpp
3
enum Foo { FooA,
FooB
, FooC };
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
>= BarD); // expected-warning {{comparison of two values with different enumeration types ('Foo' (…)
[
all
...]
warn-thread-safety-analysis.cpp
534
LateFoo
FooB
;
549
LateFoo
fooB
;
551
fooB
.a = 5; // \
552
// expected-warning{{writing variable 'a' requires holding mutex '
fooB
.mu' exclusively}} \
[
all
...]
Completed in 2875 milliseconds