Lines Matching refs:here

16 typedef struct ContainsBool // expected-note{{within field of type 'ContainsBool' declared here}}
18 bool x; // expected-note{{field of illegal type 'bool' declared here}}
25 typedef struct FooImage2D // expected-note{{within field of type 'FooImage2D' declared here}}
27 image2d_t imageField; // expected-note{{field of illegal type 'image2d_t' declared here}}
32 typedef struct Foo // expected-note{{within field of type 'Foo' declared here}}
34 int* ptrField; // expected-note{{field of illegal pointer type 'int *' declared here}}
39 typedef union FooUnion // expected-note{{within field of type 'FooUnion' declared here}}
41 int* ptrField; // expected-note{{field of illegal pointer type 'int *' declared here}}
46 …edef struct NestedPointer // expected-note 2 {{within field of type 'NestedPointer' declared here}}
51 int* ptrField; // expected-note 3 {{field of illegal pointer type 'int *' declared here}}
52 } inner; // expected-note 3 {{within field of type 'struct InnerNestedPointer' declared here}}
57 … NestedPointerComplex // expected-note{{within field of type 'NestedPointerComplex' declared here}}
65 int* innerPtrField; // expected-note{{field of illegal pointer type 'int *' declared here}}
66 } inner; // expected-note{{within field of type 'struct InnerNestedPointerComplex' declared here}}
74 typedef struct NestedBool // expected-note 2 {{within field of type 'NestedBool' declared here}}
79 bool boolField; // expected-note 2 {{field of illegal type 'bool' declared here}}
80 } inner; // expected-note 2 {{within field of type 'struct InnerNestedBool' declared here}}
92 bool boolField; // expected-note{{field of illegal type 'bool' declared here}}
95 typedef struct NestedBool2 // expected-note{{within field of type 'NestedBool2' declared here}}
98 …ected-note{{within field of type 'NestedBool2Inner' (aka 'struct NestedBool2Inner') declared here}}
124 struct AlsoUser // expected-note{{within field of type 'AlsoUser' declared here}}
129 …t NestedPointer aaaa; // expected-note{{within field of type 'struct NestedPointer' declared here}}