Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDParsedAttr.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()
HDSemaDeclObjC.cpp1560 AttributeFactory attrFactory; in actOnObjCTypeArgsOrProtocolQualifiers()
HDSemaDecl.cpp13396 AttributeFactory attrs; in ActOnFinishKNRParamDeclarations()
14317 AttributeFactory attrFactory; in ImplicitlyDefineFunction()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
HDParsedAttr.h197 friend class AttributeFactory;
546 class AttributeFactory {
596 AttributeFactory();
597 ~AttributeFactory();
601 friend class AttributeFactory; variable
603 AttributeFactory &Factory;
625 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
634 AttributeFactory &getFactory() const { return Factory; } in getFactory()
674 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); in create()
698 void *memory = allocate(AttributeFactory::TypeTagForDatatypeAllocSize); in createTypeTagForDatatype()
[all …]
HDDeclSpec.h431 DeclSpec(AttributeFactory &attrFactory) in DeclSpec()
1345 AttributeFactory *QualAttrFactory;
1406 QualAttrFactory = new AttributeFactory(); in getOrCreateMethodQualifiers()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
HDParser.h267 AttributeFactory AttrFactory;
411 AttributeFactory &getAttrFactory() { return AttrFactory; } in getAttrFactory()
1508 ParsedAttributesWithRange(AttributeFactory &factory) in ParsedAttributesWithRange()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
HDParsePragma.cpp256 PragmaAttributeHandler(AttributeFactory &AttrFactory) in PragmaAttributeHandler()