Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Sema/
H A DParsedAttr.cpp40 if (IsAvailability) return AttributeFactory::AvailabilityAllocSize; in allocated_size()
42 return AttributeFactory::TypeTagForDatatypeAllocSize; in allocated_size()
44 return AttributeFactory::PropertyAllocSize; in allocated_size()
54 AttributeFactory::AttributeFactory() { in AttributeFactory() function in AttributeFactory
58 AttributeFactory::~AttributeFactory() = default;
66 void *AttributeFactory::allocate(size_t size) { in allocate()
76 return Alloc.Allocate(size, alignof(AttributeFactory)); in allocate()
79 void AttributeFactory::deallocate(ParsedAttr *Attr) { in deallocate()
96 void AttributeFactory::reclaimPool(AttributePool &cur) { in reclaimPool()
H A DSemaDeclObjC.cpp1581 AttributeFactory attrFactory; in actOnObjCTypeArgsOrProtocolQualifiers()
H A DSemaDecl.cpp14877 AttributeFactory attrs; in ActOnFinishKNRParamDeclarations()
15944 AttributeFactory attrFactory; in ImplicitlyDefineFunction()
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DParsedAttr.h315 friend class AttributeFactory;
738 class AttributeFactory {
788 AttributeFactory();
789 ~AttributeFactory();
793 friend class AttributeFactory; variable
795 AttributeFactory &Factory;
817 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
826 AttributeFactory &getFactory() const { return Factory; } in getFactory()
866 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); in create()
914 void *memory = allocate(AttributeFactory::PropertyAllocSize); in createPropertyAttribute()
[all …]
H A DDeclSpec.h441 DeclSpec(AttributeFactory &attrFactory) in DeclSpec()
1369 AttributeFactory *QualAttrFactory;
1434 QualAttrFactory = new AttributeFactory(); in getOrCreateMethodQualifiers()
/openbsd/gnu/llvm/clang/include/clang/Parse/
H A DParser.h290 AttributeFactory AttrFactory;
450 AttributeFactory &getAttrFactory() { return AttrFactory; } in getAttrFactory()
/openbsd/gnu/llvm/clang/lib/Parse/
H A DParsePragma.cpp333 PragmaAttributeHandler(AttributeFactory &AttrFactory) in PragmaAttributeHandler()