Lines Matching refs:document_
260 : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(),
265 : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(),
271 document_ = document;
272 const char* begin = document_.c_str();
273 const char* end = begin + document_.length();
1227 std::string document_;
1243 : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(),
4241 document_ = "";
4244 document_ += "\n";
4245 return document_;
4252 document_ += "null";
4255 document_ += valueToString(value.asLargestInt());
4258 document_ += valueToString(value.asLargestUInt());
4261 document_ += valueToString(value.asDouble());
4269 if (ok) document_ += valueToQuotedStringN(str, static_cast<unsigned>(end-str));
4273 document_ += valueToString(value.asBool());
4276 document_ += '[';
4280 document_ += ',';
4283 document_ += ']';
4287 document_ += '{';
4292 document_ += ',';
4293 document_ += valueToQuotedStringN(name.data(), name.length());
4294 document_ += yamlCompatiblityEnabled_ ? ": " : ":";
4297 document_ += '}';
4309 document_ = "";
4315 document_ += "\n";
4316 return document_;
4362 document_ += " : ";
4368 document_ += ',';
4402 document_ += ',';
4410 document_ += "[ ";
4413 document_ += ", ";
4414 document_ += childValues_[index];
4416 document_ += " ]";
4453 document_ += value;
4457 if (!document_.empty()) {
4458 char last = document_[document_.length() - 1];
4462 document_ += '\n';
4464 document_ += indentString_;
4469 document_ += value;
4483 document_ += "\n";
4488 document_ += *iter;
4496 document_ += "\n";
4501 document_ += " " + root.getComment(commentAfterOnSameLine);
4504 document_ += "\n";
4505 document_ += root.getComment(commentAfter);
4506 document_ += "\n";
4520 : document_(NULL), rightMargin_(74), indentation_(indentation),
4524 document_ = &out;
4533 *document_ << "\n";
4534 document_ = NULL; // Forget the stream, for safety.
4580 *document_ << " : ";
4586 *document_ << ",";
4622 *document_ << ",";
4630 *document_ << "[ ";
4633 *document_ << ", ";
4634 *document_ << childValues_[index];
4636 *document_ << " ]";
4673 *document_ << value;
4681 *document_ << '\n' << indentString_;
4686 *document_ << value;
4705 *document_ << *iter;
4709 *document_ << indentString_;
4717 *document_ << ' ' << root.getComment(commentAfterOnSameLine);
4721 *document_ << root.getComment(commentAfter);