Searched refs:Deserialize (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DASTConsumers.h41 bool DumpDecls, bool Deserialize, bool DumpLookups,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DReproducerInstrumentation.cpp24 template <> char *Deserializer::Deserialize<char *>() { function in class:Deserializer
25 return const_cast<char *>(Deserialize<const char *>());
28 template <> const char *Deserializer::Deserialize<const char *>() { function in class:Deserializer
52 unsigned id = deserializer.Deserialize<unsigned>();
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTDumper.cpp181 LLVM_DUMP_METHOD void Decl::dump(raw_ostream &OS, bool Deserialize, argument
189 (void)Deserialize; // FIXME?
194 P.setDeserialize(Deserialize);
213 bool Deserialize) const {
221 P.setDeserialize(Deserialize);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DASTConsumers.cpp148 bool DumpDecls, bool Deserialize, bool DumpLookups,
150 assert((DumpDecls || Deserialize || DumpLookups) && "nothing to dump");
152 Deserialize ? ASTPrinter::DumpFull :
147 CreateASTDumper(std::unique_ptr<raw_ostream> Out, StringRef FilterString, bool DumpDecls, bool Deserialize, bool DumpLookups, ASTDumpOutputFormat Format) argument
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DReproducerInstrumentation.h276 /// Deserialize and interpret value as T.
277 template <typename T> T Deserialize() { function in class:lldb_private::repro::Deserializer
286 unsigned result = Deserialize<unsigned>();
295 unsigned result = Deserialize<unsigned>();
304 unsigned result = Deserialize<unsigned>();
326 Deserialize<unsigned>());
333 Deserialize<unsigned>());
342 return new UnderlyingT(Deserialize<UnderlyingT>());
352 return *(new UnderlyingT(Deserialize<UnderlyingT>()));
364 template <> const char *Deserializer::Deserialize<cons
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h66 bool Deserialize = false; member in class:clang::ASTNodeTraverser
77 void setDeserialize(bool D) { Deserialize = D; }
78 bool getDeserialize() const { return Deserialize; }
253 for (const auto *D : (Deserialize ? DC->decls() : DC->noload_decls()))
H A DDeclBase.h1146 void dump(raw_ostream &Out, bool Deserialize = false,
2396 bool Deserialize = false) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/
H A DRPCSerialization.h341 DeserializeFtor Deserialize) {
355 std::move(Deserialize)));
446 DeserializeFtor &&Deserialize) {
450 std::forward<DeserializeFtor>(Deserialize));
595 /// Deserialize a std::vector<T> to a std::vector<T>.
628 /// Deserialize a std::set<T> to a std::set<T>.
671 /// Deserialize a std::map<K, V> to a std::map<K, V>.
340 registerErrorType(std::string Name, SerializeFtor Serialize, DeserializeFtor Deserialize) argument
445 registerErrorSerialization(std::string Name, SerializeFtor &&Serialize, DeserializeFtor &&Deserialize) argument

Completed in 104 milliseconds