HomeSort by relevance Sort by last modified time
    Searched refs:AttrListInfo (Results 1 - 2 of 2) sorted by null

  /external/clang/tools/libclang/
IndexingContext.h 27 class AttrListInfo;
48 IntrusiveRefCntPtr<AttrListInfo> AttrList;
236 class AttrListInfo {
244 AttrListInfo(const AttrListInfo &) LLVM_DELETED_FUNCTION;
245 void operator=(const AttrListInfo &) LLVM_DELETED_FUNCTION;
247 AttrListInfo(const Decl *D, IndexingContext &IdxCtx);
249 static IntrusiveRefCntPtr<AttrListInfo> create(const Decl *D,
259 /// \brief Retain/Release only useful when we allocate a AttrListInfo from the
267 this->~AttrListInfo();
    [all...]
IndexingContext.cpp 63 AttrListInfo::AttrListInfo(const Decl *D, IndexingContext &IdxCtx)
115 IntrusiveRefCntPtr<AttrListInfo>
116 AttrListInfo::create(const Decl *D, IndexingContext &IdxCtx) {
118 AttrListInfo *attrs = SA.allocate<AttrListInfo>();
119 return new (attrs) AttrListInfo(D, IdxCtx);
920 EntityInfo.AttrList = AttrListInfo::create(D, *this);
    [all...]

Completed in 34 milliseconds