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 28 class AttrListInfo;
49 IntrusiveRefCntPtr<AttrListInfo> AttrList;
237 class AttrListInfo {
245 AttrListInfo(const AttrListInfo &) LLVM_DELETED_FUNCTION;
246 void operator=(const AttrListInfo &) LLVM_DELETED_FUNCTION;
248 AttrListInfo(const Decl *D, IndexingContext &IdxCtx);
250 static IntrusiveRefCntPtr<AttrListInfo> create(const Decl *D,
260 /// \brief Retain/Release only useful when we allocate a AttrListInfo from the
268 this->~AttrListInfo();
    [all...]
IndexingContext.cpp 64 AttrListInfo::AttrListInfo(const Decl *D, IndexingContext &IdxCtx)
116 IntrusiveRefCntPtr<AttrListInfo>
117 AttrListInfo::create(const Decl *D, IndexingContext &IdxCtx) {
119 AttrListInfo *attrs = SA.allocate<AttrListInfo>();
120 return new (attrs) AttrListInfo(D, IdxCtx);
929 EntityInfo.AttrList = AttrListInfo::create(D, *this);
    [all...]

Completed in 54 milliseconds