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
66
) 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
98
__block
int x;
126
__block
int b;
128
__block
int d;
blocks-windows.c
66
__block
int i;
/external/compiler-rt/test/BlocksRuntime/
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;
/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
17
__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;
/external/mesa3d/src/mesa/drivers/dri/i965/
brw_cfg.h
309
#define foreach_block_and_inst(
__block
, __type, __inst, __cfg) \
310
foreach_block (
__block
, __cfg) \
311
foreach_inst_in_block (__type, __inst,
__block
)
316
#define foreach_block_and_inst_safe(
__block
, __type, __inst, __cfg) \
317
foreach_block_safe (
__block
, __cfg) \
318
foreach_inst_in_block_safe (__type, __inst,
__block
)
320
#define foreach_block(
__block
, __cfg) \
321
foreach_list_typed (bblock_t,
__block
, link, &(__cfg)->block_list)
323
#define foreach_block_reverse(
__block
, __cfg) \
324
foreach_list_typed_reverse (bblock_t,
__block
, link, &(__cfg)->block_list
[
all
...]
Completed in 2130 milliseconds
1
2
3