Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Sema/
H A DSema.cpp1162 UnusedFileScopedDecls.erase( in ActOnEndOfTranslationUnit()
1163 std::remove_if(UnusedFileScopedDecls.begin(nullptr, true), in ActOnEndOfTranslationUnit()
1164 UnusedFileScopedDecls.end(), in ActOnEndOfTranslationUnit()
1168 UnusedFileScopedDecls.end()); in ActOnEndOfTranslationUnit()
1341 I = UnusedFileScopedDecls.begin(ExternalSource.get()), in ActOnEndOfTranslationUnit()
1342 E = UnusedFileScopedDecls.end(); in ActOnEndOfTranslationUnit()
H A DSemaDecl.cpp1965 UnusedFileScopedDecls.push_back(D); in MarkUnusedFileScopedDecl()
/openbsd/gnu/llvm/clang/lib/Serialization/
H A DASTWriter.cpp4689 RecordData UnusedFileScopedDecls; in WriteASTCore() local
4691 AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls, in WriteASTCore()
4692 UnusedFileScopedDecls); in WriteASTCore()
5038 if (!UnusedFileScopedDecls.empty()) in WriteASTCore()
5039 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls); in WriteASTCore()
H A DASTReader.cpp3322 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I])); in ReadASTBlock()
8409 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) { in ReadUnusedFileScopedDecls()
8411 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I])); in ReadUnusedFileScopedDecls()
8415 UnusedFileScopedDecls.clear(); in ReadUnusedFileScopedDecls()
/openbsd/gnu/llvm/clang/include/clang/Serialization/
H A DASTReader.h821 SmallVector<serialization::DeclID, 16> UnusedFileScopedDecls; variable
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DSema.h885 UnusedFileScopedDeclsType UnusedFileScopedDecls; variable