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.cpp1461 AttributeFactory attrFactory; in actOnObjCTypeArgsOrProtocolQualifiers()
DSemaDecl.cpp10644 AttributeFactory attrs; in ActOnFinishKNRParamDeclarations()
11357 AttributeFactory attrFactory; in ImplicitlyDefineFunction()
/external/clang/include/clang/Sema/
DAttributeList.h318 friend class AttributeFactory; variable
483 class AttributeFactory {
535 AttributeFactory();
536 ~AttributeFactory();
540 AttributeFactory &Factory;
558 AttributePool(AttributeFactory &factory) : Factory(factory), Head(nullptr) {} in AttributePool()
567 AttributeFactory &getFactory() const { return Factory; } in getFactory()
610 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); in create()
638 void *memory = allocate(AttributeFactory::TypeTagForDatatypeAllocSize); in createTypeTagForDatatype()
661 void *memory = allocate(AttributeFactory::PropertyAllocSize); in createPropertyAttribute()
[all …]
DDeclSpec.h411 DeclSpec(AttributeFactory &attrFactory) in DeclSpec()
/external/clang/include/clang/Parse/
DParser.h220 AttributeFactory AttrFactory;
248 AttributeFactory &getAttrFactory() { return AttrFactory; } in getAttrFactory()
1222 ParsedAttributesWithRange(AttributeFactory &factory) in ParsedAttributesWithRange()