Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.cpp663 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl(); in handleObjCInterface() local
664 ObjCContainerDeclInfo ContDInfo(/*isForwardRef=*/true, isRedeclaration, in handleObjCInterface()
718 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl(); in handleObjCProtocol() local
720 isRedeclaration, in handleObjCProtocol()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclObjC.cpp951 if (!Redecl && isRedeclaration()) { in getNextRedeclarationImpl()
985 if (isRedeclaration()) { in getCanonicalDecl()
1313 if (Method->isRedeclaration()) { in getOverriddenMethods()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang-c/
H A DIndex.h6366 int isRedeclaration; member
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDecl.cpp6161 bool Redeclaration = D.isRedeclaration(); in ActOnTypedefDeclarator()
7457 if (ShadowedDecl && !D.isRedeclaration()) in ActOnVariableDeclarator()
7497 if (D.isRedeclaration() && !Previous.empty()) { in ActOnVariableDeclarator()
8354 bool wasRedeclaration = ExtraArgs.D.isRedeclaration(); in DiagnoseInvalidRedeclaration()
9515 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || in ActOnFunctionDeclarator()
9667 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() || in ActOnFunctionDeclarator()
9709 } else if (!D.isRedeclaration()) { in ActOnFunctionDeclarator()
9789 if (!D.isRedeclaration() && in ActOnFunctionDeclarator()
9862 if (D.isRedeclaration() && !Previous.empty()) { in ActOnFunctionDeclarator()
H A DSemaDeclCXX.cpp875 } else if (ShadowedDecl && !D.isRedeclaration()) { in ActOnDecompositionDeclarator()
16780 if (D.isRedeclaration()) { in ActOnFriendFunctionDecl()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DDeclSpec.h2602 bool isRedeclaration() const { return Redeclaration; } in isRedeclaration() function
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclObjC.h269 bool isRedeclaration() const { return ObjCMethodDeclBits.IsRedeclaration; } in isRedeclaration() function
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterDecl.cpp700 Record.push_back(D->isRedeclaration()); in VisitObjCMethodDecl()
/netbsd-src/external/apache2/llvm/dist/clang/tools/c-index-test/
H A Dc-index-test.c3739 printf(" | isRedecl: %d", info->isRedeclaration); in index_indexDeclaration()