Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:declared

4   int x[2]; // expected-note 4 {{array 'x' declared here}}
5 int y[2]; // expected-note 2 {{array 'y' declared here}}
6 int z[1]; // expected-note {{array 'z' declared here}}
7 int w[1][1]; // expected-note {{array 'w' declared here}}
8 int v[1][1][1]; // expected-note {{array 'v' declared here}}
33 void f2(const int (&a)[2]) { // expected-note {{declared here}}
44 short a[2]; // expected-note 4 {{declared here}}
56 int array[2]; // expected-note {{declared here}}
61 int array2[] = { 0, 1, 2 }; // expected-note 2 {{declared here}}
69 const char str2[] = "foo"; // expected-note {{declared here}}
77 char arr[I]; // expected-note 3 {{declared here}}
93 int arr[SIZE]; // expected-note {{array 'arr' declared here}}
100 short array[100]; // expected-note {{array 'array' declared here}}
116 int arr[3 + (extendArray ? 1 : 0)]; // expected-note {{array 'arr' declared here}}
135 int arr[2] = { 0, 0 }; // expected-note {{array 'arr' declared here}}
149 int arr[2]; // expected-note {{array 'arr' declared here}}
189 char c1[1]; // expected-note {{declared here}}
196 char c1[1]; // expected-note {{declared here}}
211 struct foo { char c[ONE]; }; // expected-note {{declared here}}
212 template <int N> struct bar { char c[N]; }; // expected-note {{declared here}}
222 int foo[5]; // expected-note 5 {{array 'foo' declared here}}
232 double foo[4096]; // expected-note {{array 'foo' declared here}}
247 double a[5]; // expected-note {{array 'a' declared here}}
253 int a[128]; // expected-note {{array 'a' declared here}}