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