Lines Matching refs:document_
210 document_ = "";
212 document_ += "\n";
213 return document_;
223 document_ += "null";
226 document_ += valueToString( value.asLargestInt() );
229 document_ += valueToString( value.asLargestUInt() );
232 document_ += valueToString( value.asDouble() );
235 document_ += valueToQuotedString( value.asCString() );
238 document_ += valueToString( value.asBool() );
242 document_ += "[";
247 document_ += ",";
250 document_ += "]";
256 document_ += "{";
263 document_ += ",";
264 document_ += valueToQuotedString( name.c_str() );
265 document_ += yamlCompatiblityEnabled_ ? ": "
269 document_ += "}";
290 document_ = "";
296 document_ += "\n";
297 return document_;
343 document_ += " : ";
350 document_ += ",";
393 document_ += ",";
402 document_ += "[ ";
406 document_ += ", ";
407 document_ += childValues_[index];
409 document_ += " ]";
452 document_ += value;
459 if ( !document_.empty() )
461 char last = document_[document_.length()-1];
465 document_ += '\n';
467 document_ += indentString_;
475 document_ += value;
499 document_ += normalizeEOL( root.getComment( commentBefore ) );
500 document_ += "\n";
508 document_ += " " + normalizeEOL( root.getComment( commentAfterOnSameLine ) );
512 document_ += "\n";
513 document_ += normalizeEOL( root.getComment( commentAfter ) );
514 document_ += "\n";
556 : document_(NULL)
567 document_ = &out;
573 *document_ << "\n";
574 document_ = NULL; // Forget the stream, for safety.
620 *document_ << " : ";
627 *document_ << ",";
670 *document_ << ",";
679 *document_ << "[ ";
683 *document_ << ", ";
684 *document_ << childValues_[index];
686 *document_ << " ]";
729 *document_ << value;
739 if ( !document_.empty() )
741 char last = document_[document_.length()-1];
745 *document_ << '\n';
748 *document_ << '\n' << indentString_;
756 *document_ << value;
780 *document_ << normalizeEOL( root.getComment( commentBefore ) );
781 *document_ << "\n";
789 *document_ << " " + normalizeEOL( root.getComment( commentAfterOnSameLine ) );
793 *document_ << "\n";
794 *document_ << normalizeEOL( root.getComment( commentAfter ) );
795 *document_ << "\n";