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

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp607 /// Used to prune the decls of Sema's UnusedFileScopedDecls vector.
623 // UnusedFileScopedDecls stores the first declaration.
653 // UnusedFileScopedDecls stores the first declaration.
1032 UnusedFileScopedDecls.erase(
1033 std::remove_if(UnusedFileScopedDecls.begin(nullptr, true),
1034 UnusedFileScopedDecls.end(),
1038 UnusedFileScopedDecls.end());
1184 I = UnusedFileScopedDecls.begin(ExternalSource),
1185 E = UnusedFileScopedDecls.end(); I != E; ++I) {
H A DSemaDecl.cpp1738 UnusedFileScopedDecls.push_back(D);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4465 RecordData UnusedFileScopedDecls;
4467 AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls,
4468 UnusedFileScopedDecls);
4818 if (!UnusedFileScopedDecls.empty())
4819 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls);
H A DASTReader.cpp3265 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I]));
8253 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
8255 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
8259 UnusedFileScopedDecls.clear();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h797 SmallVector<uint64_t, 16> UnusedFileScopedDecls; member in class:clang::ASTReader
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h766 UnusedFileScopedDeclsType UnusedFileScopedDecls; member in class:clang::final

Completed in 339 milliseconds