| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 | 109 |
| 110 bool Put(char c); | 110 bool Put(char c); |
| 111 bool Put(String* str); | 111 bool Put(String* str); |
| 112 bool Put(String* str, int start, int end); | 112 bool Put(String* str, int start, int end); |
| 113 void Add(Vector<const char> format, Vector<FmtElm> elms); | 113 void Add(Vector<const char> format, Vector<FmtElm> elms); |
| 114 void Add(const char* format); | 114 void Add(const char* format); |
| 115 void Add(Vector<const char> format); | 115 void Add(Vector<const char> format); |
| 116 void Add(const char* format, FmtElm arg0); | 116 void Add(const char* format, FmtElm arg0); |
| 117 void Add(const char* format, FmtElm arg0, FmtElm arg1); | 117 void Add(const char* format, FmtElm arg0, FmtElm arg1); |
| 118 void Add(const char* format, FmtElm arg0, FmtElm arg1, FmtElm arg2); | 118 void Add(const char* format, FmtElm arg0, FmtElm arg1, FmtElm arg2); |
| 119 void Add(const char* format, |
| 120 FmtElm arg0, |
| 121 FmtElm arg1, |
| 122 FmtElm arg2, |
| 123 FmtElm arg3); |
| 119 | 124 |
| 120 // Getting the message out. | 125 // Getting the message out. |
| 121 void OutputToStdOut(); | 126 void OutputToStdOut(); |
| 122 void Log(); | 127 void Log(); |
| 123 Handle<String> ToString(); | 128 Handle<String> ToString(); |
| 124 SmartPointer<const char> ToCString(); | 129 SmartPointer<const char> ToCString(); |
| 125 | 130 |
| 126 // Object printing support. | 131 // Object printing support. |
| 127 void PrintName(Object* o); | 132 void PrintName(Object* o); |
| 128 void PrintFixedArray(FixedArray* array, unsigned int limit); | 133 void PrintFixedArray(FixedArray* array, unsigned int limit); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 int space() const { return capacity_ - length_; } | 165 int space() const { return capacity_ - length_; } |
| 161 char* cursor() const { return buffer_ + length_; } | 166 char* cursor() const { return buffer_ + length_; } |
| 162 | 167 |
| 163 DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream); | 168 DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream); |
| 164 }; | 169 }; |
| 165 | 170 |
| 166 | 171 |
| 167 } } // namespace v8::internal | 172 } } // namespace v8::internal |
| 168 | 173 |
| 169 #endif // V8_STRING_STREAM_H_ | 174 #endif // V8_STRING_STREAM_H_ |
| OLD | NEW |