Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DAttributeList.cpp35 if (IsAvailability) return AttributeFactory::AvailabilityAllocSize; in allocated_size()
37 return AttributeFactory::TypeTagForDatatypeAllocSize; in allocated_size()
39 return AttributeFactory::PropertyAllocSize; in allocated_size()
43 AttributeFactory::AttributeFactory() { in AttributeFactory() function in AttributeFactory
47 AttributeFactory::~AttributeFactory() {} in ~AttributeFactory()
55 void *AttributeFactory::allocate(size_t size) { in allocate()
66 return Alloc.Allocate(size, llvm::AlignOf<AttributeFactory>::Alignment); in allocate()
69 void AttributeFactory::reclaimPool(AttributeList *cur) { in reclaimPool()
DSemaDeclObjC.cpp1470 AttributeFactory attrFactory; in actOnObjCTypeArgsOrProtocolQualifiers()
DSemaDecl.cpp11054 AttributeFactory attrs; in ActOnFinishKNRParamDeclarations()
11765 AttributeFactory attrFactory; in ImplicitlyDefineFunction()
/external/clang/include/clang/Sema/
DAttributeList.h340 friend class AttributeFactory; variable
526 class AttributeFactory {
577 AttributeFactory();
578 ~AttributeFactory();
582 AttributeFactory &Factory;
600 AttributePool(AttributeFactory &factory) : Factory(factory), Head(nullptr) {} in AttributePool()
609 AttributeFactory &getFactory() const { return Factory; } in getFactory()
653 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); in create()
681 void *memory = allocate(AttributeFactory::TypeTagForDatatypeAllocSize); in createTypeTagForDatatype()
704 void *memory = allocate(AttributeFactory::PropertyAllocSize); in createPropertyAttribute()
[all …]
DDeclSpec.h419 DeclSpec(AttributeFactory &attrFactory) in DeclSpec()
/external/clang/include/clang/Parse/
DParser.h226 AttributeFactory AttrFactory;
254 AttributeFactory &getAttrFactory() { return AttrFactory; } in getAttrFactory()
1244 ParsedAttributesWithRange(AttributeFactory &factory) in ParsedAttributesWithRange()