Home
last modified time | relevance | path

Searched refs:AttributeFactory (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp37 if (IsAvailability) return AttributeFactory::AvailabilityAllocSize; in allocated_size()
39 return AttributeFactory::TypeTagForDatatypeAllocSize; in allocated_size()
41 return AttributeFactory::PropertyAllocSize; in allocated_size()
51 AttributeFactory::AttributeFactory() { in AttributeFactory() function in AttributeFactory
55 AttributeFactory::~AttributeFactory() = default;
63 void *AttributeFactory::allocate(size_t size) { in allocate()
73 return Alloc.Allocate(size, alignof(AttributeFactory)); in allocate()
76 void AttributeFactory::deallocate(ParsedAttr *Attr) { in deallocate()
93 void AttributeFactory::reclaimPool(AttributePool &cur) { in reclaimPool()
H A DSemaDeclObjC.cpp1581 AttributeFactory attrFactory; in actOnObjCTypeArgsOrProtocolQualifiers()
H A DSemaDecl.cpp15413 AttributeFactory attrs; in ActOnFinishKNRParamDeclarations()
16542 AttributeFactory attrFactory; in ImplicitlyDefineFunction()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h202 friend class AttributeFactory;
619 class AttributeFactory {
669 AttributeFactory();
670 ~AttributeFactory();
674 friend class AttributeFactory; variable
676 AttributeFactory &Factory;
698 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
714 AttributeFactory &getFactory() const { return Factory; } in getFactory()
753 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); in create()
802 void *memory = allocate(AttributeFactory::PropertyAllocSize); in createPropertyAttribute()
[all …]
H A DDeclSpec.h457 DeclSpec(AttributeFactory &attrFactory) in DeclSpec()
1385 AttributeFactory *QualAttrFactory;
1450 QualAttrFactory = new AttributeFactory(); in getOrCreateMethodQualifiers()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h308 AttributeFactory AttrFactory;
465 AttributeFactory &getAttrFactory() { return AttrFactory; } in getAttrFactory()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParsePragma.cpp380 PragmaAttributeHandler(AttributeFactory &AttrFactory) in PragmaAttributeHandler()