Searched refs:UnusedFileScopedDecls (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | Sema.cpp | 1219 UnusedFileScopedDecls.erase( in ActOnEndOfTranslationUnit() 1220 std::remove_if(UnusedFileScopedDecls.begin(nullptr, true), in ActOnEndOfTranslationUnit() 1221 UnusedFileScopedDecls.end(), in ActOnEndOfTranslationUnit() 1225 UnusedFileScopedDecls.end()); in ActOnEndOfTranslationUnit() 1409 I = UnusedFileScopedDecls.begin(ExternalSource.get()), in ActOnEndOfTranslationUnit() 1410 E = UnusedFileScopedDecls.end(); in ActOnEndOfTranslationUnit()
|
H A D | SemaDecl.cpp | 1908 UnusedFileScopedDecls.push_back(D); in MarkUnusedFileScopedDecl()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 5095 AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls); in PrepareWritingSpecialDecls() 5203 RecordData UnusedFileScopedDecls; in WriteSpecialDeclRecords() local 5205 AddLazyVectorEmiitedDecls(*this, SemaRef.UnusedFileScopedDecls, in WriteSpecialDeclRecords() 5206 UnusedFileScopedDecls); in WriteSpecialDeclRecords() 5207 if (!UnusedFileScopedDecls.empty()) in WriteSpecialDeclRecords() 5208 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls); in WriteSpecialDeclRecords()
|
H A D | ASTReader.cpp | 3523 UnusedFileScopedDecls.push_back(ReadDeclID(F, Record, I)); in ReadASTBlock() 8722 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) { in ReadUnusedFileScopedDecls() 8724 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I])); in ReadUnusedFileScopedDecls() 8728 UnusedFileScopedDecls.clear(); in ReadUnusedFileScopedDecls()
|
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/ |
H A D | ASTReader.h | 837 SmallVector<GlobalDeclID, 16> UnusedFileScopedDecls; variable
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 3092 UnusedFileScopedDeclsType UnusedFileScopedDecls; variable
|