OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__block
(Results
1 - 25
of
75
) sorted by null
1
2
3
/external/clang/test/CodeGen/
blocks-aligned-byref-variable.c
6
__block
ai a = 10;
14
__block
double a = 10;
blocks-seq.c
13
__block
int i;
block-byref-aggr.c
7
// When assigning into a
__block
variable, ensure that we compute that
11
__block
Agg a = {100};
33
// When chaining assignments into
__block
variables, make sure we
37
__block
Agg a, b;
exceptions.c
11
__block
int x = 10;
25
__block
int x = 10;
blocks-1.c
13
__block
int a;
24
__block
int a;
38
__block
int k;
39
__block
int (^j)(int);
53
__block
struct { int i; } i;
58
__block
int i;
65
__block
int i;
captured-statements-nested.c
68
__block
int x;
96
__block
int b;
98
__block
int d;
/external/compiler-rt/BlocksRuntime/tests/
flagsisa.c
14
__block
int flags;
15
__block
void *isa;
byrefaccess.c
24
__block
int i = 10;
goto.c
21
__block
int val = 0;
byrefcopy.c
25
int
__block
i = 10;
byrefcopyinner.c
14
__block
int a = 42;
27
printf("****
__block
heap storage should have been created at this point\n");
byrefcopystack.c
25
int
__block
i = 10;
/external/clang/test/CodeGenCXX/
block-destruct.cpp
6
__block
A a;
debug-info-blocks.cpp
10
__block
A a;
block-byref-cxx-objc.cpp
13
__block
A BYREF_VAR;
33
__block
A a;
block.cpp
16
__block
Test t;
cp-blocks-linetables.cpp
28
__block
enum numbers x = one;
29
__block
enum numbers y = two;
34
{
__block
enum numbers x = savex;
/external/clang/test/Parser/
block-block-storageclass.c
7
__block
int X = 1234;
8
__block
const char * message = "HELLO";
/external/clang/test/Sema/
block-storageclass.c
8
__block
int X = 1234;
9
__block
const char * message = "HELLO";
captured-statements.c
52
__block
int x; // expected-note {{'x' declared here}}
58
x = y; // expected-error{{
__block
variable 'x' cannot be captured in a captured statement}}
59
y = z; // expected-error{{variable is not assignable (missing
__block
type specifier)}}
64
__block
int a; // expected-note 2 {{'a' declared here}}
68
__block
int c;
71
a = b; // expected-error{{
__block
variable 'a' cannot be captured in a captured statement}}
73
c = a; // expected-error{{
__block
variable 'a' cannot be captured in a captured statement}}
75
d = b; // expected-error{{variable is not assignable (missing
__block
type specifier)}}
block-misc.c
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}
[
all
...]
/external/clang/test/Analysis/
stack-block-returned.cpp
6
__block
int i;
blocks-no-inline.c
7
__block
int i = 0;
/external/clang/test/Rewriter/
rewrite-captured-nested-bvar.c
10
__block
char BYREF_VAR_CHECK = 'a';
11
__block
char d = 'd';
14
__block
char e = 'e';
/external/clang/test/Index/
blocks.c
8
__block
i = 0;
Completed in 3609 milliseconds
1
2
3