OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:__block
(Results
51 - 75
of
163
) sorted by null
1
2
3
4
5
6
7
/external/clang/test/CodeGenObjC/
block-6.m
16
__block
id observer = ^{ return observer; };
objc-read-weak-byref.m
12
__weak
__block
NSObject* weak_object = object;
objc2-weak-block-call.m
13
__block
__weak MyView *weakSelf = self;
blocks-1.m
32
__block
__weak D *weakSelf;
41
__block
int i = 0;
arc-captured-block-var-inlined-layout.m
13
__block
int byref_int = 0;
17
__block
id byref_bab = (id)0;
18
__block
id bl_var1;
arc-unoptimized-byref-var.m
5
__block
id x;
/external/clang/test/Rewriter/
blockstruct.m
13
__block
struct _s *s = 0;
rewrite-constructor-init.mm
20
__block
NSRange previousRange = NSMakeRange(0, 0);
rewrite-nested-blocks-1.mm
32
__block
char didit = 'a';
33
__block
char upIsFinished = 'b';
/external/compiler-rt/test/BlocksRuntime/
byrefcopy.c
25
int
__block
i = 10;
byrefcopystack.c
25
int
__block
i = 10;
rdar6414583.c
16
__block
int c = 1;
recursiveassign.c
26
__block
void (^recursive_copy_block)(int) = ^(int arg) { printf("got wrong Block\n"); exit(1); };
recursive-test.c
20
__block
void (^recursive_local_block)(int);
57
__block
void (^recursive_copy_block)(int);
/external/clang/test/Sema/
block-literal.c
43
takeblock(^{ x = 4; }); // expected-error {{variable is not assignable (missing
__block
type specifier)}}
44
__block
y = 7; // expected-warning {{type specifier missing, defaults to 'int'}}
/external/clang/test/SemaObjC/
block-explicit-return-type.m
23
__block
int x = 1;
24
__block
int y = 2;
/external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp
12
// Adding
__block
to an obj-c variable could be either because the variable
16
// If the reference is not needed it will assume
__block
was added to break a
17
// cycle so it will remove '
__block
' and add __weak/__unsafe_unretained.
20
//
__block
Foo *x;
144
"
__block
",
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
blocks.mm
4
__block
int var; // expected-note 2{{'var' declared here}}
5
(void)[var] { }; // expected-error{{
__block
variable 'var' cannot be captured in a lambda}}
7
(void)[=] { var = 17; }; // expected-error{{
__block
variable 'var' cannot be captured in a lambda}}
/external/clang/test/CodeGenObjCXX/
block-var-layout.mm
27
__block
int byref_int = 0;
35
__block
id byref_bab = (id)0;
36
__block
void *bl_var1;
blocks.mm
83
__block
Wrapper2 W2;
/external/clang/test/SemaObjCXX/
blocks.mm
79
//
__block
variable's type.
89
__block
A<1> x; // expected-note {{requested here}}
93
__block
A<n> x; // expected-note {{requested here}}
/external/clang/test/SemaCXX/
blocks.cpp
72
// Move
__block
variables to the heap when possible.
81
__block
MoveOnly mo;
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
crypt.h
41
extern void encrypt (char *
__block
, int __edflag) __THROW __nonnull ((1));
68
extern void encrypt_r (char *
__block
, int __edflag,
/external/clang/test/Analysis/
blocks-no-inline.c
7
__block
int i = 0;
/external/clang/test/CodeGen/
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;
Completed in 3617 milliseconds
1
2
3
4
5
6
7