Lines Matching refs:StyledStreamWriter
471 StyledStreamWriter::StyledStreamWriter(std::string indentation) in StyledStreamWriter() function in Json::StyledStreamWriter
475 void StyledStreamWriter::write(std::ostream& out, const Value& root) { in write()
486 void StyledStreamWriter::writeValue(const Value& value) { in writeValue()
538 void StyledStreamWriter::writeArrayValue(const Value& value) { in writeArrayValue()
581 bool StyledStreamWriter::isMultineArray(const Value& value) { in isMultineArray()
606 void StyledStreamWriter::pushValue(const std::string& value) { in pushValue()
613 void StyledStreamWriter::writeIndent() { in writeIndent()
629 void StyledStreamWriter::writeWithIndent(const std::string& value) { in writeWithIndent()
634 void StyledStreamWriter::indent() { indentString_ += indentation_; } in indent()
636 void StyledStreamWriter::unindent() { in unindent()
641 void StyledStreamWriter::writeCommentBeforeValue(const Value& root) { in writeCommentBeforeValue()
648 void StyledStreamWriter::writeCommentAfterValueOnSameLine(const Value& root) { in writeCommentAfterValueOnSameLine()
659 bool StyledStreamWriter::hasCommentForValue(const Value& value) { in hasCommentForValue()
665 std::string StyledStreamWriter::normalizeEOL(const std::string& text) { in normalizeEOL()
685 Json::StyledStreamWriter writer; in operator <<()