Home | History | Annotate | Download | only in libclang

Lines Matching defs:DeclInfo

63 struct DeclInfo : public CXIdxDeclInfo {
84 DeclInfo(bool isRedeclaration, bool isDefinition, bool isContainer)
93 DeclInfo(DInfoKind K,
104 static bool classof(const DeclInfo *) { return true; }
107 struct ObjCContainerDeclInfo : public DeclInfo {
113 : DeclInfo(Info_ObjCContainer, isRedeclaration,
121 : DeclInfo(K, isRedeclaration, /*isDefinition=*/!isForwardRef,
126 static bool classof(const DeclInfo *D) {
152 static bool classof(const DeclInfo *D) {
167 static bool classof(const DeclInfo *D) {
183 static bool classof(const DeclInfo *D) {
189 struct ObjCPropertyDeclInfo : public DeclInfo {
193 : DeclInfo(Info_ObjCProperty,
197 static bool classof(const DeclInfo *D) {
203 struct CXXClassDeclInfo : public DeclInfo {
207 : DeclInfo(Info_CXXClass, isRedeclaration, isDefinition, isDefinition) { }
209 static bool classof(const DeclInfo *D) {
476 DeclInfo &DInfo,