/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGValue.h | 293 Qualifiers::ObjCLifetime getObjCLifetime() const { 630 Qualifiers::ObjCLifetime getObjCLifetime() const {
|
H A D | CGObjCGNU.cpp | 438 ArrayRef<Qualifiers::ObjCLifetime> IvarOwnership); 1283 int32_t FlagsForOwnership(Qualifiers::ObjCLifetime Ownership) { in FlagsForOwnership() 1312 ArrayRef<Qualifiers::ObjCLifetime> IvarOwnership) override { in GenerateIvarList() 3066 ArrayRef<Qualifiers::ObjCLifetime> IvarOwnership) { in GenerateIvarList() 3638 SmallVector<Qualifiers::ObjCLifetime, 16> IvarOwnership; in GenerateClass() 3687 Qualifiers::ObjCLifetime lt = IVD->getType().getQualifiers().getObjCLifetime(); in GenerateClass()
|
H A D | CGBlocks.cpp | 2500 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) { in buildByrefHelpers() 2629 Qualifiers::ObjCLifetime Lifetime = Qualifiers::OCL_None; in getBlockByrefInfo() 2699 Qualifiers::ObjCLifetime ByrefLifetime = Qualifiers::OCL_None; in emitByrefStructureInit()
|
H A D | CGDecl.cpp | 652 Qualifiers::ObjCLifetime lifetime) { in EmitAutoVarWithLifetime() 796 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); in EmitScalarInit() 2683 if (Qualifiers::ObjCLifetime lt = qs.getObjCLifetime()) { in EmitParmDecl()
|
H A D | CGObjCMac.cpp | 987 Qualifiers::ObjCLifetime getBlockCaptureLifetime(QualType QT, bool ByrefLayout); 990 Qualifiers::ObjCLifetime LifeTime, 2419 Qualifiers::ObjCLifetime CGObjCCommonMac::getBlockCaptureLifetime(QualType FQT, in getBlockCaptureLifetime() 2437 Qualifiers::ObjCLifetime LifeTime, in UpdateRunSkipBlockVars()
|
H A D | CGObjC.cpp | 2877 static bool shouldRetainObjCLifetime(Qualifiers::ObjCLifetime lifetime) { in shouldRetainObjCLifetime()
|
H A D | CGDebugInfo.cpp | 4703 Qualifiers::ObjCLifetime Lifetime; in EmitTypeForVarWithBlocksAttr()
|
H A D | CGExpr.cpp | 2419 if (Qualifiers::ObjCLifetime Lifetime = Dst.getQuals().getObjCLifetime()) { in EmitStoreThroughLValue()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaObjCProperty.cpp | 39 static Qualifiers::ObjCLifetime 70 Qualifiers::ObjCLifetime propertyLifetime in checkPropertyDeclWithOwnership() 75 Qualifiers::ObjCLifetime expectedLifetime in checkPropertyDeclWithOwnership() 712 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime(); in checkARCPropertyImpl() 715 Qualifiers::ObjCLifetime propertyLifetime = in checkARCPropertyImpl() 787 Qualifiers::ObjCLifetime propertyLifetime = in setImpliedPropertyAttributeForReadOnlyProperty() 800 Qualifiers::ObjCLifetime ivarLifetime = ivarType.getObjCLifetime(); in setImpliedPropertyAttributeForReadOnlyProperty() 1290 Qualifiers::ObjCLifetime lifetime = in ActOnPropertyImplDecl()
|
H A D | SemaType.cpp | 1667 Qualifiers::ObjCLifetime implicitLifetime = Qualifiers::OCL_None; in inferARCLifetimeForPointee() 2741 Qualifiers::ObjCLifetime ownership, 5661 Qualifiers::ObjCLifetime ownership) { in transferARCOwnershipToDeclSpec() 5671 Qualifiers::ObjCLifetime ownership, in transferARCOwnershipToDeclaratorChunk() 5709 Qualifiers::ObjCLifetime ownership) { in transferARCOwnership() 5765 Qualifiers::ObjCLifetime ownership = Context.getInnerObjCOwnership(FromTy); in GetTypeForDeclaratorCast() 6609 Qualifiers::ObjCLifetime lifetime; in handleObjCOwnershipTypeAttr() 6635 if (Qualifiers::ObjCLifetime previousLifetime in handleObjCOwnershipTypeAttr()
|
H A D | SemaObjC.cpp | 2157 Qualifiers::ObjCLifetime Lifetime = QT.getObjCLifetime(); in handlePreciseLifetimeAttr() 2196 Qualifiers::ObjCLifetime LifetimeQual = Ty.getQualifiers().getObjCLifetime(); in tryMakeVariablePseudoStrong()
|
H A D | SemaDeclObjC.cpp | 5400 Qualifiers::ObjCLifetime Lifetime; in AdjustParameterTypeForObjCAutoRefCount() 5454 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime(); in inferObjCARCLifetime()
|
H A D | SemaChecking.cpp | 13358 Qualifiers::ObjCLifetime LT, in checkUnsafeAssignObject() 13381 Qualifiers::ObjCLifetime LT = LHS.getObjCLifetime(); in checkUnsafeAssigns() 13408 Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime(); in checkUnsafeExprAssigns()
|
H A D | SemaOverload.cpp | 4896 Conv |= ReferenceConversions::ObjCLifetime; in CompareReferenceRelationship() 5089 (RefConv & Sema::ReferenceConversions::ObjCLifetime) != 0; in TryReferenceInit()
|
H A D | SemaDecl.cpp | 15074 Qualifiers::ObjCLifetime lifetime; in CheckParameter()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Type.h | 335 enum ObjCLifetime { 532 ObjCLifetime getObjCLifetime() const { 533 return ObjCLifetime((Mask & LifetimeMask) >> LifetimeShift); 535 void setObjCLifetime(ObjCLifetime type) { 539 void addObjCLifetime(ObjCLifetime type) { 547 ObjCLifetime lifetime = getObjCLifetime(); 553 ObjCLifetime lifetime = getObjCLifetime(); 1444 Qualifiers::ObjCLifetime getObjCLifetime() const { 1750 Qualifiers::ObjCLifetime getObjCLifetime() const { 2643 Qualifiers::ObjCLifetime getObjCARCImplicitLifetime() const;
|
H A D | ASTContext.h | 1479 Qualifiers::ObjCLifetime &Lifetime, 2224 Qualifiers::ObjCLifetime lifetime) { in getLifetimeQualifiedType() 2875 Qualifiers::ObjCLifetime getInnerObjCOwnership(QualType T) const;
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | TypePrinter.cpp | 2441 if (Qualifiers::ObjCLifetime lifetime = getObjCLifetime()) in isEmptyWhenPrinted() 2531 if (Qualifiers::ObjCLifetime lifetime = getObjCLifetime()) { in print()
|
H A D | DeclCXX.cpp | 1083 Qualifiers::ObjCLifetime LT = T.getQualifiers().getObjCLifetime(); in addedMember()
|
H A D | ASTContext.cpp | 7654 Qualifiers::ObjCLifetime ASTContext::getInnerObjCOwnership(QualType T) const { in getInnerObjCOwnership() 7975 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) { in BlockRequiresCopying() 7997 Qualifiers::ObjCLifetime &LifeTime, in getByrefLifetime()
|
H A D | Type.cpp | 4904 Qualifiers::ObjCLifetime Type::getObjCARCImplicitLifetime() const { in getObjCARCImplicitLifetime()
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | ObjCMT.cpp | 427 Qualifiers::ObjCLifetime propertyLifetime = ArgType.getObjCLifetime(); in PropertyMemoryAttribute()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 10146 ObjCLifetime = 0x20, enumerator 10148 LLVM_MARK_AS_BITMASK_ENUM(/*LargestValue=*/ObjCLifetime)
|