OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:block_release
(Results
1 - 18
of
18
) sorted by null
/external/clang/test/ARCMT/
block_copy_release.m
11
Block_release
(c);
16
Block_release
(c);
Common.h
110
#define
Block_release
(...) _Block_release((const void *)(__VA_ARGS__))
/external/chromium_org/base/mac/
scoped_block.h
18
//
Block_release
() instead of CFRetain() and CFRelease().
39
Block_release
(block_);
53
Block_release
(block_);
/external/compiler-rt/BlocksRuntime/tests/
copynull.c
31
Block_release
(blockcopy);
dispatch_call_Block_with_release.c
20
Block_release
(b);
recursive-block.c
41
//
Block_release
(inner);
50
Block_release
(block);
globalexpression.c
27
Block_release
(gblockcopy);
rdar6414583.c
27
Block_release
(block);
blockimport.c
48
Block_release
(vvcopy);
byrefcopycopy.c
33
Block_release
(_b);
byrefcopyint.c
63
Block_release
(array[i]);
reference.C
73
Block_release
(b2);
/external/compiler-rt/BlocksRuntime/
Block.h
41
* This must be paired with
Block_release
to recover memory, even when running
56
#define
Block_release
(...) _Block_release((const void *)(__VA_ARGS__))
runtime.c
480
printf("
Block_release
called upon a stack Block: %p, ignored\n", (void *)aBlock);
534
In these cases helper functions are synthesized by the compiler for use in Block_copy and
Block_release
, called the copy and dispose helpers. The copy helper emits a call to the C++ const copy constructor for C++ stack based objects and for the rest calls into the runtime support function _Block_object_assign. The dispose helper has a call to the C++ destructor for case 1 and a call into _Block_object_dispose for the rest.
/external/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp
33
// Uses of Block_copy/
Block_release
macros are rewritten:
36
//
Block_release
(c);
340
if (MacroName == "
Block_release
") {
/external/clang/docs/
BlockLanguageSpec.rst
216
type. The release operation, ``
Block_release
()``, is styled as a
241
there is no provision to do a ``Block_copy`` or a ``
Block_release
`` if
Block-ABI-Apple.rst
119
``Block_copy()`` and ``
Block_release
()`` operations, in which case the
363
and ``
Block_release
()`` are performed upon a referencing ``Block``. At the "C"
376
// helper functions called via Block_copy() and
Block_release
()
[
all
...]
AutomaticReferenceCounting.rst
103
``
Block_release
``, which decreases the reference count by 1 and destroys the
[
all
...]
Completed in 540 milliseconds