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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp602 /// Used to prune the decls of Sema's UnusedFileScopedDecls vector.
618 // UnusedFileScopedDecls stores the first declaration.
648 // UnusedFileScopedDecls stores the first declaration.
1024 UnusedFileScopedDecls.erase(
1025 std::remove_if(UnusedFileScopedDecls.begin(nullptr, true),
1026 UnusedFileScopedDecls.end(),
1030 UnusedFileScopedDecls.end());
1176 I = UnusedFileScopedDecls.begin(ExternalSource),
1177 E = UnusedFileScopedDecls.end(); I != E; ++I) {
H A DSemaDecl.cpp1723 UnusedFileScopedDecls.push_back(D);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4389 RecordData UnusedFileScopedDecls;
4391 AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls,
4392 UnusedFileScopedDecls);
4736 if (!UnusedFileScopedDecls.empty())
4737 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls);
H A DASTReader.cpp3262 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I]));
8143 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
8145 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
8149 UnusedFileScopedDecls.clear();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h796 SmallVector<uint64_t, 16> UnusedFileScopedDecls; member in class:clang::ASTReader
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h709 UnusedFileScopedDeclsType UnusedFileScopedDecls; member in class:clang::final

Completed in 280 milliseconds