Home
last modified time | relevance | path

Searched refs:AttrListInfo (Results 1 – 2 of 2) sorted by relevance

/external/clang/tools/libclang/
DIndexingContext.h31 class AttrListInfo; variable
52 IntrusiveRefCntPtr<AttrListInfo> AttrList;
240 class AttrListInfo {
248 AttrListInfo(const AttrListInfo &) = delete;
249 void operator=(const AttrListInfo &) = delete;
251 AttrListInfo(const Decl *D, IndexingContext &IdxCtx);
253 static IntrusiveRefCntPtr<AttrListInfo> create(const Decl *D,
271 this->~AttrListInfo(); in Release()
334 friend class AttrListInfo; variable
DIndexingContext.cpp64 AttrListInfo::AttrListInfo(const Decl *D, IndexingContext &IdxCtx) in AttrListInfo() function in AttrListInfo
116 IntrusiveRefCntPtr<AttrListInfo>
117 AttrListInfo::create(const Decl *D, IndexingContext &IdxCtx) { in create()
119 AttrListInfo *attrs = SA.allocate<AttrListInfo>(); in create()
120 return new (attrs) AttrListInfo(D, IdxCtx); in create()
929 EntityInfo.AttrList = AttrListInfo::create(D, *this); in getEntityInfo()