OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__block
(Results
1 - 25
of
163
) sorted by null
1
2
3
4
5
6
7
/external/clang/test/Rewriter/
rewrite-modern-block.mm
14
__block
CFUUIDBytes bytes;
23
__block
int hello;
28
// rewriting multiple
__block
decls on wintin same decl stmt.
30
__block
int BI1, BI2;
32
__block
float FLOAT1, FT2, FFFFFFFF3,
35
__block
void (^B)(), (^BB)();
38
// rewriting multiple
__block
decls on wintin same decl stmt
41
__block
int BI1 = 1, BI2 = 2;
43
double
__block
BYREFVAR = 1.34, BYREFVAR_NO_INIT, BYREFVAR2 = 1.37;
45
__block
const char *keys = keybuf, *values = valuebuf, *novalues
[
all
...]
rewrite-weak-attr.m
3
__weak
__block
id foo = nil;
4
__block
id foo2 = nil;
weak_byref_objects.m
5
__weak
__block
id foo = nil;
6
__block
id foo2 = nil;
rewrite-captured-nested-bvar.c
10
__block
char BYREF_VAR_CHECK = 'a';
11
__block
char d = 'd';
14
__block
char e = 'e';
rewrite-modern-captured-nested-bvar.mm
10
__block
char BYREF_VAR_CHECK = 'a';
11
__block
char d = 'd';
14
__block
char e = 'e';
rewrite-block-consts.mm
9
__block
int bab = 4;
10
__block
const int bas = 5;
rewrite-function-decl.mm
4
__block
int aBlockVariable = 0;
19
__block
int bBlockVariable = 0;
rewrite-modern-block-consts.mm
12
__block
int bab = 4;
13
__block
const int bas = 5;
/external/clang/test/CodeGenObjC/
blocks-3.m
13
__block
aid a1;
14
__block
id a2 __attribute__((aligned(2)));
15
__block
id a3 __attribute__((aligned(4)));
16
__block
id a4 __attribute__((aligned(8)));
17
__block
id a5, a6, a7;
18
__block
void (^b)();
block-byref-variable-layout.m
7
__block
__unsafe_unretained NSString *uuByref = (__bridge NSString *)(void*)0x102030405060708;
13
__block
__weak id wid;
14
__block
long XXX;
15
__block
id ID;
16
__block
struct S {
48
__block
mds_path_t path;
debug-info-block-helper.m
16
__block
int m2 = 0;
17
__block
int dbTransaction = 0;
/external/clang/test/ARCMT/
rewrite-block-var.m
14
__block
Foo *x = p; //
__block
used just to break cycle.
21
__block
Foo *x; //
__block
used as output variable.
28
__block
Foo *x; //
__block
used as output variable.
38
__block
Foo *x = p; //
__block
used just to break cycle.
rewrite-block-var.m.result
14
__weak Foo *x = p; //
__block
used just to break cycle.
21
__block
Foo *x; //
__block
used as output variable.
28
__block
Foo *x; //
__block
used as output variable.
38
__weak Foo *x = p; //
__block
used just to break cycle.
/external/compiler-rt/test/BlocksRuntime/
flagsisa.c
14
__block
int flags;
15
__block
void *isa;
/external/clang/test/CodeGenCXX/
block-destruct.cpp
6
__block
A a;
block-byref-cxx-objc.cpp
13
__block
A BYREF_VAR;
33
__block
A a;
/external/clang/test/CodeGen/
blocks-aligned-byref-variable.c
6
__block
ai a = 10;
14
__block
double a = 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;
/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/FixIt/
fixit-recursive-block.c
8
// expected-note {{did you mean to use
__block
'arc_fail'}}
12
// CHECK: {7:12-7:12}:"
__block
"
/external/clang/test/SemaCXX/
instantiate-blocks.cpp
7
__block
T1 byref_block_arg;
11
block_arg = arg; // expected-error {{variable is not assignable (missing
__block
type specifier)}}
/external/clang/test/SemaObjC/
block-on-method-param.m
6
- (void) compileSandboxProfileAndReturnError:(__attribute__((__blocks__(byref))) id)errorp; // expected-error {{
__block
attribute not allowed, only allowed on local variables}}
10
- (void) compileSandboxProfileAndReturnError:(__attribute__((__blocks__(byref))) id)errorp {} // expected-error {{
__block
attribute not allowed, only allowed on local variables}}
Completed in 407 milliseconds
1
2
3
4
5
6
7