Lines Matching full:document
1 //===-- MsgPackDocument.cpp - MsgPack Document --------------------------*-===//
10 /// of a document of MsgPack objects, that can be read from MsgPack, written to
35 /// lifetime of the Document.
75 // DocNode has an associated Document, i.e. it was not constructed using the
77 // remain valid for the lifetime of the Document. Use fromString to avoid
108 // A level in the document reading stack.
122 // Read a document from a binary msgpack blob, merging into anything already in
123 // the Document.
124 // The blob data must remain valid for the lifetime of this Document (because a
125 // string object in the document contains a StringRef into the original blob).
131 bool Document::readFromBlob(
259 /// Write a MsgPack document to a binary MsgPack blob.
260 void Document::writeToBlob(std::string &Blob) {