Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.cpp1565 AttributeFactory attrFactory; in actOnObjCTypeArgsOrProtocolQualifiers()
H A DSemaDecl.cpp13923 AttributeFactory attrs; in ActOnFinishKNRParamDeclarations()
14871 AttributeFactory attrFactory; in ImplicitlyDefineFunction()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DParsedAttr.h290 friend class AttributeFactory;
686 class AttributeFactory {
736 AttributeFactory();
737 ~AttributeFactory();
741 friend class AttributeFactory; variable
743 AttributeFactory &Factory;
765 AttributePool(AttributeFactory &factory) : Factory(factory) {} in AttributePool()
774 AttributeFactory &getFactory() const { return Factory; } in getFactory()
814 void *memory = allocate(AttributeFactory::AvailabilityAllocSize); in create()
838 void *memory = allocate(AttributeFactory::TypeTagForDatatypeAllocSize); in createTypeTagForDatatype()
[all …]
H A DDeclSpec.h421 DeclSpec(AttributeFactory &attrFactory) in DeclSpec()
1346 AttributeFactory *QualAttrFactory;
1411 QualAttrFactory = new AttributeFactory(); in getOrCreateMethodQualifiers()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h279 AttributeFactory AttrFactory;
439 AttributeFactory &getAttrFactory() { return AttrFactory; } in getAttrFactory()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParsePragma.cpp276 PragmaAttributeHandler(AttributeFactory &AttrFactory) in PragmaAttributeHandler()