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

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSema.cpp339 /// \brief Used to prune the decls of Sema's UnusedFileScopedDecls vector.
348 // UnusedFileScopedDecls stores the first declaration.
371 // UnusedFileScopedDecls stores the first declaration.
616 UnusedFileScopedDecls.erase(
617 std::remove_if(UnusedFileScopedDecls.begin(0, true),
618 UnusedFileScopedDecls.end(),
620 UnusedFileScopedDecls.end());
730 I = UnusedFileScopedDecls.begin(ExternalSource),
731 E = UnusedFileScopedDecls.end(); I != E; ++I) {
H A DSemaDecl.cpp1267 UnusedFileScopedDecls.push_back(D);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTReader.h648 SmallVector<uint64_t, 16> UnusedFileScopedDecls; member in class:clang::ASTReader
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp3916 RecordData UnusedFileScopedDecls; local
3918 AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls,
3919 UnusedFileScopedDecls);
4203 if (!UnusedFileScopedDecls.empty())
4204 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls);
H A DASTReader.cpp2275 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I]));
6392 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
6394 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
6398 UnusedFileScopedDecls.clear();
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h371 UnusedFileScopedDeclsType UnusedFileScopedDecls; member in class:clang::Sema

Completed in 283 milliseconds