Home
last modified time | relevance | path

Searched refs:isRedeclaration (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCXIndexDataConsumer.h86 DeclInfo(bool isRedeclaration, bool isDefinition, bool isContainer) in DeclInfo()
88 this->isRedeclaration = isRedeclaration; in DeclInfo()
97 bool isRedeclaration, bool isDefinition, bool isContainer) in DeclInfo()
99 this->isRedeclaration = isRedeclaration; in DeclInfo()
113 bool isRedeclaration, in ObjCContainerDeclInfo()
115 : DeclInfo(Info_ObjCContainer, isRedeclaration, in ObjCContainerDeclInfo()
121 bool isRedeclaration, in ObjCContainerDeclInfo()
123 : DeclInfo(K, isRedeclaration, /*isDefinition=*/!isForwardRef, in ObjCContainerDeclInfo()
203 CXXClassDeclInfo(bool isRedeclaration, bool isDefinition) in CXXClassDeclInfo()
204 : DeclInfo(Info_CXXClass, isRedeclaration, isDefinition, isDefinition) { } in CXXClassDeclInfo()
H A DCXIndexDataConsumer.cpp670 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl(); in handleObjCInterface() local
671 ObjCContainerDeclInfo ContDInfo(/*isForwardRef=*/true, isRedeclaration, in handleObjCInterface()
725 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl(); in handleObjCProtocol() local
727 isRedeclaration, in handleObjCProtocol()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclObjC.cpp1002 if (!Redecl && isRedeclaration()) { in getNextRedeclarationImpl()
1036 if (isRedeclaration()) { in getCanonicalDecl()
1364 if (Method->isRedeclaration()) { in getOverriddenMethods()
/openbsd-src/gnu/llvm/clang/include/clang-c/
H A DIndex.h5882 int isRedeclaration; member
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDecl.cpp6677 bool Redeclaration = D.isRedeclaration(); in ActOnTypedefDeclarator()
8020 if (ShadowedDecl && !D.isRedeclaration()) in ActOnVariableDeclarator()
8060 if (D.isRedeclaration() && !Previous.empty()) { in ActOnVariableDeclarator()
8923 bool wasRedeclaration = ExtraArgs.D.isRedeclaration(); in DiagnoseInvalidRedeclaration()
10222 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || in ActOnFunctionDeclarator()
10376 !D.isRedeclaration() || in ActOnFunctionDeclarator()
10418 } else if (!D.isRedeclaration()) { in ActOnFunctionDeclarator()
10498 if (!D.isRedeclaration()) { in ActOnFunctionDeclarator()
10568 if (D.isRedeclaration() && !Previous.empty()) { in ActOnFunctionDeclarator()
H A DSemaDeclCXX.cpp908 } else if (ShadowedDecl && !D.isRedeclaration()) { in ActOnDecompositionDeclarator()
17448 if (D.isRedeclaration()) { in ActOnFriendFunctionDecl()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclObjC.h268 bool isRedeclaration() const { return ObjCMethodDeclBits.IsRedeclaration; } in isRedeclaration() function
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DDeclSpec.h2672 bool isRedeclaration() const { return Redeclaration; } in isRedeclaration() function
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterDecl.cpp718 Record.push_back(D->isRedeclaration()); in VisitObjCMethodDecl()
/openbsd-src/gnu/llvm/clang/tools/c-index-test/
H A Dc-index-test.c3764 printf(" | isRedecl: %d", info->isRedeclaration); in index_indexDeclaration()