Home | History | Annotate | Download | only in gn

Lines Matching refs:output_

45   std::string String() const { return output_; }
84 std::string output_; // Output buffer.
92 output_.reserve(100 << 10);
99 str.AppendToString(&output_);
103 output_ += std::string(margin_, ' ');
132 size_t n = output_.size();
133 while (n > 0 && output_[n - 1] == ' ')
135 output_.resize(n);
140 while (n < static_cast<int>(output_.size()) &&
141 output_[output_.size() - 1 - n] != '\n') {