Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp1133 UnusedFileScopedDecls.erase( in ActOnEndOfTranslationUnit()
1134 std::remove_if(UnusedFileScopedDecls.begin(nullptr, true), in ActOnEndOfTranslationUnit()
1135 UnusedFileScopedDecls.end(), in ActOnEndOfTranslationUnit()
1139 UnusedFileScopedDecls.end()); in ActOnEndOfTranslationUnit()
1285 I = UnusedFileScopedDecls.begin(ExternalSource), in ActOnEndOfTranslationUnit()
1286 E = UnusedFileScopedDecls.end(); I != E; ++I) { in ActOnEndOfTranslationUnit()
H A DSemaDecl.cpp1768 UnusedFileScopedDecls.push_back(D); in MarkUnusedFileScopedDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4384 RecordData UnusedFileScopedDecls; in WriteASTCore() local
4386 AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls, in WriteASTCore()
4387 UnusedFileScopedDecls); in WriteASTCore()
4732 if (!UnusedFileScopedDecls.empty()) in WriteASTCore()
4733 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls); in WriteASTCore()
H A DASTReader.cpp3298 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I])); in ReadASTBlock()
8320 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) { in ReadUnusedFileScopedDecls()
8322 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I])); in ReadUnusedFileScopedDecls()
8326 UnusedFileScopedDecls.clear(); in ReadUnusedFileScopedDecls()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h802 SmallVector<serialization::DeclID, 16> UnusedFileScopedDecls; variable
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h873 UnusedFileScopedDeclsType UnusedFileScopedDecls; variable