/third_party/python/Lib/xml/sax/ |
H A D | saxutils.py | 117 self._write = out.write 145 self._write('>') 151 self._write('<?xml version="1.0" encoding="%s"?>\n' % 168 self._write('<' + name) 170 self._write(' %s=%s' % (name, quoteattr(value))) 174 self._write(">") 178 self._write('/>') 181 self._write('</%s>' % name) 185 self._write('<' + self._qname(name)) 189 self._write(' xmln [all...] |
/third_party/node/test/parallel/ |
H A D | test-stream2-writable.js | 35 _write(chunk, encoding, cb) { 162 tw._write = function(chunk, encoding, cb) { 165 return TestWriter.prototype._write.call(this, chunk, encoding, cb); 268 tw._write = common.mustCall(function(chunk) { 278 w._write = common.mustNotCall(); 291 d._write = common.mustNotCall(); 303 w._write = common.mustCall((msg) => { 322 w._write = function(chunk, e, cb) { 343 w._write = function(chunk, e, cb) { 357 // Verify finish does not come before synchronous _write() callbac [all...] |
H A D | test-stream-writable-write-error.js | 34 _write() {} 43 _write() {} 51 _write() {} 59 _write() {} 68 _write() {}
|
H A D | test-stream2-objects.js | 219 w._write = function(chunk, encoding, cb) { 234 w._write = function(chunk, encoding, cb) { 258 w._write = function(chunk, encoding, cb) { 282 w._write = function(chunk, encoding, cb) {
|
H A D | test-stream2-pipe-error-handling.js | 44 dest._write = function(chunk, encoding, cb) { 84 dest._write = function(chunk, encoding, cb) {
|
H A D | test-stream3-pause-then-read.js | 115 w._write = function(chunk, encoding, cb) { 159 w._write = function(chunk, encoding, cb) {
|
H A D | test-stream2-finish-pipe.js | 32 w._write = function(data, encoding, cb) {
|
H A D | test-stream2-finish-pipe-error.js | 13 w._write = function(data, encoding, cb) {
|
H A D | test-http-client-readable.js | 46 s._write = function(data, enc, cb) {
|
H A D | test-repl-colors.js | 16 inout._write = function(s, _, cb) {
|
H A D | test-stream-writableState-ending.js | 16 writable._write = (chunk, encoding, cb) => {
|
H A D | test-stream2-base64-single-char-read-end.js | 42 dst._write = function(chunk, enc, cb) { 55 assert.fail('timed out waiting for _write');
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | diff_state.py | 70 def _write(self, s): member in Dumper 74 self._write(' '*self.level) 77 self._write('\n') 92 self._write('{') 98 self._write('%s: ' % name) 102 self._write(',') 108 self._write('}') 119 self._write(',') 124 self._write('[') 131 self._write(']') [all...] |
/third_party/python/Lib/wsgiref/ |
H A D | handlers.py | 262 """Transmit version/status/date/server, via self._write()""" 265 self._write(('HTTP/%s %s\r\n' % (self.http_version,self.status)).encode('iso-8859-1')) 267 self._write( 271 self._write(('Server: %s\r\n' % self.server_software).encode('iso-8859-1')) 273 self._write(('Status: %s\r\n' % self.status).encode('iso-8859-1')) 292 self._write(data) 341 """Transmit headers to the client, via self._write()""" 346 self._write(bytes(self.headers)) 403 def _write(self,data): member in BaseHandler 413 """Override in subclass to force sending of recent '_write()' call 465 def _write(self,data): global() member in SimpleHandler [all...] |
/third_party/node/test/common/ |
H A D | hijackstdio.js | 7 const _write = stdWrite[name] = stream.write; 17 _write.call(stream, data, callback);
|
H A D | udppair.js | 17 (wrap, buffers, addr) => this._write(wrap, buffers, addr); 48 _write(wrap, buffers, addr) {
|
H A D | duplexpair.js | 23 _write(chunk, encoding, callback) {
|
/third_party/node/lib/internal/crypto/ |
H A D | sig.js | 67 Sign.prototype._write = function _write(chunk, encoding, callback) { 208 Verify.prototype._write = Sign.prototype._write;
|
/third_party/node/test/addons/repl-domain-abort/ |
H A D | test.js | 56 dOutput._write = function _write(chunk, encoding, cb) { function
|
/third_party/node/lib/internal/streams/ |
H A D | writable.js | 23 // Implement an async ._write(chunk, encoding, cb), and it'll handle all 116 // Should we decode strings into buffers before passing to _write? 145 // may call the _write() callback in the same tick, so that we don't 149 // The callback that's passed to _write(chunk, cb). 155 // The amount that is being written when _write is called. 159 // synchronous _write() completion. 174 // Emit prefinish if the only thing we're waiting for is _write cbs 240 this._write = options.write; 286 function _write(stream, chunk, encoding, cb) { function 337 return _write(thi [all...] |
H A D | compose.js | 125 d._write = function(chunk, encoding, callback) { 149 d._write = async function(chunk, encoding, callback) {
|
/third_party/musl/porting/liteos_a_newlib/kernel/src/ |
H A D | fs.c | 52 ssize_t _write(int fd, const void *buf, size_t nbyte) in _write() function 99 ssize_t _write(int fd, const void *buf, size_t nbyte) in _write() function
|
/third_party/node/benchmark/streams/ |
H A D | pipe-object-mode.js | 18 w._write = (data, enc, cb) => cb();
|
H A D | pipe.js | 18 w._write = (data, enc, cb) => cb();
|
/third_party/node/lib/internal/fs/ |
H A D | sync_write_stream.js | 25 SyncWriteStream.prototype._write = function(chunk, encoding, cb) {
|