Searched refs:BLOCK_FIELD_IS_WEAK (Results 1 – 8 of 8) sorted by relevance
/openbsd/gnu/llvm/compiler-rt/lib/BlocksRuntime/ |
H A D | runtime.c | 380 …l isWeak = ((flags & (BLOCK_FIELD_IS_BYREF|BLOCK_FIELD_IS_WEAK)) == (BLOCK_FIELD_IS_BYREF|BLOCK_FI… in _Block_byref_assign_copy() 563 if ((flags & BLOCK_FIELD_IS_WEAK) == BLOCK_FIELD_IS_WEAK) { in _Block_object_assign() 604 …else if ((flags & (BLOCK_FIELD_IS_WEAK|BLOCK_FIELD_IS_BLOCK|BLOCK_BYREF_CALLER)) == BLOCK_FIELD_IS… in _Block_object_dispose()
|
H A D | Block_private.h | 106 BLOCK_FIELD_IS_WEAK = 16, /* declared __weak, only used in byref copy helpers */ enumerator
|
/openbsd/gnu/llvm/clang/docs/ |
H A D | Block-ABI-Apple.rst | 620 …_Block_object_assign(&dest->_block_byref_i, src-> _block_byref_i, BLOCK_FIELD_IS_WEAK | BLOCK_FIEL… 626 _Block_object_dispose(src->_block_byref_i, BLOCK_FIELD_IS_WEAK | BLOCK_FIELD_IS_BYREF); 633 …_Block_object_assign(&dest->_block_byref_i, src->_block_byref_i, BLOCK_FIELD_IS_WEAK | BLOCK_FIELD… 639 …_Block_object_assign(&dest->_block_byref_i, src->_block_byref_i, BLOCK_FIELD_IS_WEAK | BLOCK_FIELD… 666 …ign(&dst->captured_obj, src->captured_obj, BLOCK_FIELD_IS_OBJECT | BLOCK_FIELD_IS_WEAK | BLOCK_BYR… 671 …_Block_object_dispose(param->captured_obj, BLOCK_FIELD_IS_OBJECT | BLOCK_FIELD_IS_WEAK | BLOCK_BYR… 693 … _Block_object_assign(&dst->byref_obj, src->byref_obj, BLOCK_FIELD_IS_BYREF | BLOCK_FIELD_IS_WEAK); 698 _Block_object_dispose(src->byref_obj, BLOCK_FIELD_IS_BYREF | BLOCK_FIELD_IS_WEAK); 885 BLOCK_FIELD_IS_WEAK = 16, // declared __weak 898 this causes the addition of ``BLOCK_FIELD_IS_WEAK`` orred onto the [all …]
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CGBlocks.h | 94 BLOCK_FIELD_IS_WEAK = 0x10, /* declared __weak, only used in byref copy enumerator
|
H A D | CGBlocks.cpp | 1626 Flags |= BLOCK_FIELD_IS_WEAK; in computeCopyInfoForBlockCapture() 1758 if (F & BLOCK_FIELD_IS_WEAK) in getBlockCaptureStr() 2045 Flags |= BLOCK_FIELD_IS_WEAK; in computeDestroyInfoForBlockCapture() 2566 flags |= BLOCK_FIELD_IS_WEAK; in buildByrefHelpers()
|
H A D | CGDecl.cpp | 2087 Flags |= BLOCK_FIELD_IS_WEAK; in EmitAutoVarCleanups()
|
/openbsd/gnu/llvm/clang/lib/Frontend/Rewrite/ |
H A D | RewriteObjC.cpp | 46 BLOCK_FIELD_IS_WEAK = 16, /* declared __weak, only used in byref copy enumerator 4215 flag |= BLOCK_FIELD_IS_WEAK; in RewriteByRefVar()
|
H A D | RewriteModernObjC.cpp | 49 BLOCK_FIELD_IS_WEAK = 16, /* declared __weak, only used in byref copy enumerator 5060 flag |= BLOCK_FIELD_IS_WEAK; in RewriteByRefVar()
|