Lines Matching refs:__block
150 __block int test16i; // expected-error {{__block attribute not allowed, only allowed on local variables}}
152 void test16(__block int i) { // expected-error {{__block attribute not allowed, only allowed on local variables}}
154 extern __block double extern_var; // expected-error {{__block attribute not allowed, only allowed on local variables}}
155 static __block char * pch; // expected-error {{__block attribute not allowed, only allowed on local variables}}
156 __block int a[size]; // expected-error {{__block attribute not allowed on declaration with a variably modified type}}
157 __block int (*ap)[size]; // expected-error {{__block attribute not allowed on declaration with a variably modified type}}
195 __block int x; // expected-note {{jump bypasses setup of __block variable}}
217 __block int b[10]; // expected-note {{declared here}}