Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DParsedAttr.cpp38 if (IsAvailability) return AttributeFactory::AvailabilityAllocSize; in allocated_size()
40 return AttributeFactory::TypeTagForDatatypeAllocSize; in allocated_size()
42 return AttributeFactory::PropertyAllocSize; in allocated_size()
52 AttributeFactory::AttributeFactory() { in AttributeFactory() function in AttributeFactory
56 AttributeFactory::~AttributeFactory() = default;
64 void *AttributeFactory::allocate(size_t size) { in allocate()
74 return Alloc.Allocate(size, alignof(AttributeFactory)); in allocate()
77 void AttributeFactory::deallocate(ParsedAttr *Attr) { in deallocate()
94 void AttributeFactory::reclaimPool(AttributePool &cur) { in reclaimPool()
H A DSemaDeclObjC.cpp1553 AttributeFactory attrFactory; in actOnObjCTypeArgsOrProtocolQualifiers()
H A DSemaDecl.cpp12611 AttributeFactory attrs; in ActOnFinishKNRParamDeclarations()
13497 AttributeFactory attrFactory; in ImplicitlyDefineFunction()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DParsedAttr.h230 friend class AttributeFactory;
579 class AttributeFactory {
629 AttributeFactory();
630 ~AttributeFactory();
634 friend class AttributeFactory; variable
635 AttributeFactory &Factory;
657 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
666 AttributeFactory &getFactory() const { return Factory; } in getFactory()
706 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); in create()
754 void *memory = allocate(AttributeFactory::PropertyAllocSize); in createPropertyAttribute()
[all …]
H A DDeclSpec.h423 DeclSpec(AttributeFactory &attrFactory) in DeclSpec()
1319 AttributeFactory *QualAttrFactory;
1380 QualAttrFactory = new AttributeFactory(); in getOrCreateMethodQualifiers()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h250 AttributeFactory AttrFactory;
371 AttributeFactory &getAttrFactory() { return AttrFactory; } in getAttrFactory()
1411 ParsedAttributesWithRange(AttributeFactory &factory) in ParsedAttributesWithRange()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParsePragma.cpp252 PragmaAttributeHandler(AttributeFactory &AttrFactory) in PragmaAttributeHandler()