Home
last modified time | relevance | path

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

/freebsd/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 DSemaAPINotes.cpp300 AttributeFactory AF{}; in ProcessAPINotes()
H A DSemaDeclObjC.cpp1577 AttributeFactory attrFactory; in actOnObjCTypeArgsOrProtocolQualifiers()
H A DSemaDecl.cpp15179 AttributeFactory attrs; in ActOnFinishKNRParamDeclarations()
16336 AttributeFactory attrFactory; in ImplicitlyDefineFunction()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h215 friend class AttributeFactory;
639 class AttributeFactory {
689 AttributeFactory();
690 ~AttributeFactory();
695 friend class AttributeFactory; variable
697 AttributeFactory &Factory;
719 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
735 AttributeFactory &getFactory() const { return Factory; } in getFactory()
774 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); in create()
799 void *memory = allocate(AttributeFactory::TypeTagForDatatypeAllocSize); in createTypeTagForDatatype()
[all …]
H A DDeclSpec.h480 DeclSpec(AttributeFactory &attrFactory) in DeclSpec()
1431 AttributeFactory *QualAttrFactory;
1496 QualAttrFactory = new AttributeFactory(); in getOrCreateMethodQualifiers()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h315 AttributeFactory AttrFactory;
499 AttributeFactory &getAttrFactory() { return AttrFactory; } in getAttrFactory()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParsePragma.cpp383 PragmaAttributeHandler(AttributeFactory &AttrFactory) in PragmaAttributeHandler()