Home
last modified time | relevance | path

Searched refs:UnusedFileScopedDecls (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DSema.cpp1160 UnusedFileScopedDecls.erase( in ActOnEndOfTranslationUnit()
1161 std::remove_if(UnusedFileScopedDecls.begin(nullptr, true), in ActOnEndOfTranslationUnit()
1162 UnusedFileScopedDecls.end(), in ActOnEndOfTranslationUnit()
1166 UnusedFileScopedDecls.end()); in ActOnEndOfTranslationUnit()
1314 I = UnusedFileScopedDecls.begin(ExternalSource), in ActOnEndOfTranslationUnit()
1315 E = UnusedFileScopedDecls.end(); I != E; ++I) { in ActOnEndOfTranslationUnit()
H A DSemaDecl.cpp1935 UnusedFileScopedDecls.push_back(D); in MarkUnusedFileScopedDecl()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriter.cpp4585 RecordData UnusedFileScopedDecls; in WriteASTCore() local
4587 AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls, in WriteASTCore()
4588 UnusedFileScopedDecls); in WriteASTCore()
4934 if (!UnusedFileScopedDecls.empty()) in WriteASTCore()
4935 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls); in WriteASTCore()
H A DASTReader.cpp3331 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I])); in ReadASTBlock()
8370 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) { in ReadUnusedFileScopedDecls()
8372 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I])); in ReadUnusedFileScopedDecls()
8376 UnusedFileScopedDecls.clear(); in ReadUnusedFileScopedDecls()
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DASTReader.h803 SmallVector<serialization::DeclID, 16> UnusedFileScopedDecls; variable
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h884 UnusedFileScopedDeclsType UnusedFileScopedDecls; variable