Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp1165 UnusedFileScopedDecls.erase( in ActOnEndOfTranslationUnit()
1166 std::remove_if(UnusedFileScopedDecls.begin(nullptr, true), in ActOnEndOfTranslationUnit()
1167 UnusedFileScopedDecls.end(), in ActOnEndOfTranslationUnit()
1171 UnusedFileScopedDecls.end()); in ActOnEndOfTranslationUnit()
1364 I = UnusedFileScopedDecls.begin(ExternalSource.get()), in ActOnEndOfTranslationUnit()
1365 E = UnusedFileScopedDecls.end(); in ActOnEndOfTranslationUnit()
H A DSemaDecl.cpp2000 UnusedFileScopedDecls.push_back(D); in MarkUnusedFileScopedDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4792 RecordData UnusedFileScopedDecls; in WriteASTCore() local
4794 AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls, in WriteASTCore()
4795 UnusedFileScopedDecls); in WriteASTCore()
5137 if (!UnusedFileScopedDecls.empty()) in WriteASTCore()
5138 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls); in WriteASTCore()
H A DASTReader.cpp3511 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I])); in ReadASTBlock()
8631 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) { in ReadUnusedFileScopedDecls()
8633 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I])); in ReadUnusedFileScopedDecls()
8637 UnusedFileScopedDecls.clear(); in ReadUnusedFileScopedDecls()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h829 SmallVector<serialization::DeclID, 16> UnusedFileScopedDecls; variable
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h914 UnusedFileScopedDeclsType UnusedFileScopedDecls; variable