OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_Block_copy
(Results
1 - 7
of
7
) sorted by null
/external/clang/test/CodeGen/
blocks-windows.c
43
void *
_Block_copy
(void *);
67
return
_Block_copy
(^{ ++i; return i; });
/external/clang/test/CodeGenCXX/
cxx-block-objects.cpp
5
extern "C" void *
_Block_copy
(const void *aBlock);
22
void (^c)(void) = ((__typeof(^{ a.hello(); }))
_Block_copy
((const void *)(^{ a.hello(); })));
/external/compiler-rt/lib/BlocksRuntime/
Block.h
44
BLOCK_EXPORT void *
_Block_copy
(const void *aBlock);
55
#define Block_copy(...) ((__typeof(__VA_ARGS__))
_Block_copy
((const void *)(__VA_ARGS__)))
runtime.c
445
*
_Block_copy
, _Block_release, and (old) _Block_destroy
453
void *
_Block_copy
(const void *arg) {
/external/clang/test/ARCMT/
Common.h
107
void *
_Block_copy
(const void *aBlock);
109
#define Block_copy(...) ((__typeof(__VA_ARGS__))
_Block_copy
((const void *)(__VA_ARGS__)))
/external/compiler-rt/lib/tsan/rtl/
tsan_libdispatch_mac.cc
303
__block dispatch_block_t block_copy = (dispatch_block_t)
_Block_copy
(block);
/external/clang/lib/Sema/
SemaChecking.cpp
[
all
...]
Completed in 118 milliseconds