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

/external/clang/tools/libclang/
H A DIndexingContext.h28 class AttrListInfo;
49 IntrusiveRefCntPtr<AttrListInfo> AttrList;
246 class AttrListInfo { class in namespace:clang::cxindex
254 AttrListInfo(const AttrListInfo&); // DO NOT IMPLEMENT
255 void operator=(const AttrListInfo&); // DO NOT IMPLEMENT
257 AttrListInfo(const Decl *D, IndexingContext &IdxCtx);
259 static IntrusiveRefCntPtr<AttrListInfo> create(const Decl *D,
269 /// \brief Retain/Release only useful when we allocate a AttrListInfo from the
277 this->~AttrListInfo();
[all...]
H A DIndexingContext.cpp64 AttrListInfo::AttrListInfo(const Decl *D, IndexingContext &IdxCtx) function in class:AttrListInfo
116 IntrusiveRefCntPtr<AttrListInfo>
117 AttrListInfo::create(const Decl *D, IndexingContext &IdxCtx) {
119 AttrListInfo *attrs = SA.allocate<AttrListInfo>();
120 return new (attrs) AttrListInfo(D, IdxCtx);
843 EntityInfo.AttrList = AttrListInfo::create(D, *this);

Completed in 344 milliseconds