Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DASTDumper.cpp180 LLVM_DUMP_METHOD void Decl::dump(raw_ostream &OS, bool Deserialize, in dump() argument
188 (void)Deserialize; // FIXME? in dump()
192 P.setDeserialize(Deserialize); in dump()
209 bool Deserialize) const { in dumpLookups()
215 P.setDeserialize(Deserialize); in dumpLookups()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DASTConsumers.cpp168 bool DumpDecls, bool Deserialize, bool DumpLookups, in CreateASTDumper() argument
170 assert((DumpDecls || Deserialize || DumpLookups) && "nothing to dump"); in CreateASTDumper()
173 Deserialize ? ASTPrinter::DumpFull in CreateASTDumper()
/llvm-project-15.0.7/clang/include/clang/Frontend/
H A DASTConsumers.h35 bool DumpDecls, bool Deserialize, bool DumpLookups,
/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTNodeTraverser.h72 bool Deserialize = false; variable
82 void setDeserialize(bool D) { Deserialize = D; } in setDeserialize()
83 bool getDeserialize() const { return Deserialize; } in getDeserialize()
297 for (const auto *D : (Deserialize ? DC->decls() : DC->noload_decls())) in dumpDeclContext()
H A DDeclBase.h1208 void dump(raw_ostream &Out, bool Deserialize = false,
2521 bool Deserialize = false) const;
/llvm-project-15.0.7/llvm/unittests/Support/
H A DJSONTest.cpp471 TEST(JSONTest, Deserialize) { in TEST() argument