Lines Matching refs:IndentedText
20 IndentedText::IndentedText() : offset_(0) {} in IndentedText() function in chromeos_dbus_bindings::IndentedText
22 void IndentedText::AddBlankLine() { in AddBlankLine()
26 void IndentedText::AddBlock(const IndentedText& block) { in AddBlock()
30 void IndentedText::AddBlockWithOffset(const IndentedText& block, size_t shift) { in AddBlockWithOffset()
36 void IndentedText::AddLine(const std::string& line) { in AddLine()
40 void IndentedText::AddLineWithOffset(const std::string& line, size_t shift) { in AddLineWithOffset()
44 void IndentedText::AddLineAndPushOffsetTo(const std::string& line, in AddLineAndPushOffsetTo()
58 void IndentedText::AddComments(const std::string& doc_string) { in AddComments()
104 string IndentedText::GetContents() const { in GetContents()
113 std::vector<std::string> IndentedText::GetLines() const { in GetLines()
124 void IndentedText::PushOffset(size_t shift) { in PushOffset()
129 void IndentedText::PopOffset() { in PopOffset()
135 void IndentedText::Reset() { in Reset()