Home | History | Annotate | Download | only in Index

Lines Matching refs:Entity

1 //===--- EntityImpl.h - Internal Entity implementation---------*- C++ -*-=====//
10 // Internal implementation for the Entity class
17 #include "clang/Index/Entity.h"
28 Entity Parent;
39 EntityImpl(Entity parent, DeclarationName name, unsigned idNS,
44 /// \brief Find the Decl that can be referred to by this entity.
47 /// \brief Get an Entity associated with the given Decl.
48 /// \returns Null if an Entity cannot refer to this Decl.
49 static Entity get(Decl *D, Program &Prog, ProgramImpl &ProgImpl);
50 static Entity get(StringRef Name, Program &Prog, ProgramImpl &ProgImpl);
57 static void Profile(llvm::FoldingSetNodeID &ID, Entity Parent,