HomeSort by relevance Sort by last modified time
    Searched defs:OutputString (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/sdch/open-vcdiff/src/google/
output_string.h 63 // definitions of OutputString methods -- see output_string_types.h for some
66 class OutputString : public OutputStringInterface {
68 explicit OutputString(StringClass* impl) : impl_(impl) { }
70 virtual ~OutputString() { }
72 virtual OutputString& append(const char* s, size_t n) {
98 OutputString(const OutputString&);
99 void operator=(const OutputString&);
102 // Don't allow the OutputString template to be based upon a pointer to
104 // lack any functions expected of an OutputString
    [all...]
  /external/chromium_org/tools/gn/
standard_out.cc 70 void OutputString(const std::string& output, TextDecoration dec) {
108 void OutputString(const std::string& output, TextDecoration dec) {
144 OutputString(" " + line.substr(0, colon_offset), DECORATION_YELLOW);
153 OutputString(": ");
159 OutputString(line.substr(begin_bracket, first_normal - begin_bracket),
163 OutputString(line.substr(first_normal) + "\n");
179 OutputString(line.substr(0, chars_to_highlight), DECORATION_YELLOW);
180 OutputString(line.substr(chars_to_highlight) + "\n");
196 OutputString(line + "\n", dec);

Completed in 274 milliseconds