Lines Matching refs:__block
15 - 2008/7/28 --- revised, ``__block`` syntax
20 - 2009/2/10 --- revised, ``__block`` objects need retain
222 The ``__block`` Storage Qualifier
226 qualifier, :block-term:`__block`, for local variables. [testme: a
227 __block declaration within a block literal] The ``__block`` storage
230 ``__block`` act as if they were in allocated storage and this storage
237 In the case where a ``__block`` variable is a Block one must assume
238 that the ``__block`` variable resides in allocated storage and as such
283 Object variables of ``__block`` storage type are assumed to hold
290 ``__weak`` specifier for ``__block`` variables of object type. If
298 ``__block`` variable resides in the heap (either by default or via
300 start ``__block`` variables on the stack and migrate them to the heap
305 ``__weak`` ``__block`` variables.
347 Variables declared as residing in ``__block`` storage may be initially
350 from the stack, ``__block`` variables are copied using their normal
351 qualification (i.e. without adding const). In C++11, ``__block``