Home | History | Annotate | Download | only in utils

Lines Matching refs:write

71             fStream->write(fBlock, fWrite - fBlock);
88 this->write(",", 1);
91 this->write("\"", 1);
92 this->write(name, strlen(name));
93 this->write("\":", 2);
108 this->write("{", 1);
126 this->write("}", 1);
140 this->write("[", 1);
158 this->write("]", 1);
169 this->write("\"", 1);
173 case '"': this->write("\\\"", 2); break;
174 case '\\': this->write("\\\\", 2); break;
175 case '\b': this->write("\\b", 2); break;
176 case '\f': this->write("\\f", 2); break;
177 case '\n': this->write("\\n", 2); break;
178 case '\r': this->write("\\r", 2); break;
179 case '\t': this->write("\\t", 2); break;
180 default: this->write(value, 1); break;
185 this->write("\"", 1);
192 this->write("true", 4);
194 this->write("false", 5);
247 // any larger. Even with a 1MB block, time to write a large (~300 MB) JSON file only drops
276 this->write(",", 1);
281 this->write(" ", 1);
293 this->write("\n", 1);
295 this->write(" ", 3);
298 this->write(" ", 1);
303 void write(const char* buf, size_t length) {
310 fStream->write(buf, length);