/third_party/python/Lib/xml/sax/ |
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(' xmlns:%s="%s"' % (prefix, uri)) [all …]
|
/third_party/mesa3d/src/gallium/tools/trace/ |
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/node/test/parallel/ |
D | test-stream-writable-write-writev-finish.js | 13 writable._write = (chunks, encoding, cb) => { function in writable 29 writable._write = (chunks, encoding, cb) => { function in writable 45 writable._write = (chunks, encoding, cb) => { function in writable 70 writable._write = (chunks, encoding, cb) => { function in writable 106 ws._write = (chunk, encoding, done) => { function in ws 123 ws._write = (chunk, encoding, done) => { function in ws 131 w._write = (chunk, encoding, cb) => { function in w 144 w._write = (chunk, encoding, cb) => { function in w
|
D | test-stream2-writable.js | 36 _write(chunk, encoding, cb) { method in TestWriter 163 tw._write = function(chunk, encoding, cb) { function in tw 166 return TestWriter.prototype._write.call(this, chunk, encoding, cb); method in TestWriter 269 tw._write = common.mustCall(function(chunk) { 279 w._write = common.mustNotCall(); 292 d._write = common.mustNotCall(); 304 w._write = common.mustCall((msg) => { 323 w._write = function(chunk, e, cb) { function in w 344 w._write = function(chunk, e, cb) { function in w 361 w._write = function(chunk, e, cb) { function in w [all …]
|
D | test-stream-writable-constructor-set-methods.js | 21 const _write = common.mustCall((chunk, _, next) => { constant 30 const w2 = new Writable({ write: _write, writev: _writev }); 32 assert.strictEqual(w2._write, _write);
|
D | test-stream-writable-write-error.js | 34 _write() {} method 43 _write() {} method 51 _write() {} method 59 _write() {} method
|
D | test-stream-pipe-await-drain.js | 20 writer1._write = common.mustCall(function(chunk, encoding, cb) { 40 writer2._write = common.mustCall((chunk, encoding, cb) => { 52 writer3._write = common.mustCall((chunk, encoding, cb) => {
|
D | test-stream-pipe-cleanup-pause.js | 16 writer1._write = common.mustCall(function(chunk, encoding, cb) { 32 writer2._write = common.mustCall(function(chunk, encoding, cb) {
|
D | test-stream2-objects.js | 220 w._write = function(chunk, encoding, cb) { function in w 235 w._write = function(chunk, encoding, cb) { function in w 259 w._write = function(chunk, encoding, cb) { function in w 283 w._write = function(chunk, encoding, cb) { function in w
|
D | test-http2-write-finishes-after-stream-destroy.js | 27 const originalWrite = serverSide._write; 28 serverSide._write = (buf, enc, cb) => { function
|
D | test-stream-writable-end-cb-error.js | 11 writable._write = (chunk, encoding, cb) => { function in writable 31 writable._write = (chunk, encoding, cb) => { function in writable
|
D | test-stream2-pipe-error-handling.js | 44 dest._write = function(chunk, encoding, cb) { function in dest 84 dest._write = function(chunk, encoding, cb) { function in dest
|
D | test-stream3-pause-then-read.js | 115 w._write = function(chunk, encoding, cb) { function 159 w._write = function(chunk, encoding, cb) {
|
/third_party/boost/boost/process/ |
D | pipe.hpp | 113 basic_pipebuf() : _write(default_buffer_size), _read(default_buffer_size) in basic_pipebuf() 116 this->setp(_write.data(), _write.data() + _write.size()); in basic_pipebuf() 132 _write(default_buffer_size), in basic_pipebuf() 136 this->setp(_write.data(), _write.data() + _write.size()); in basic_pipebuf() 140 _write(default_buffer_size), in basic_pipebuf() 144 this->setp(_write.data(), _write.data() + _write.size()); in basic_pipebuf() 259 std::vector<char_type> _write; member
|
/third_party/python/Lib/wsgiref/ |
D | handlers.py | 266 … self._write(('HTTP/%s %s\r\n' % (self.http_version,self.status)).encode('iso-8859-1')) 268 self._write( 272 self._write(('Server: %s\r\n' % self.server_software).encode('iso-8859-1')) 274 self._write(('Status: %s\r\n' % self.status).encode('iso-8859-1')) 293 self._write(data) 347 self._write(bytes(self.headers)) 404 def _write(self,data): member in BaseHandler 466 def _write(self,data): member in SimpleHandler
|
/third_party/node/lib/internal/crypto/ |
D | sig.js | 46 Sign.prototype._write = function _write(chunk, encoding, callback) { method in Sign 166 Verify.prototype._write = Sign.prototype._write; method in Verify
|
/third_party/node/test/common/ |
D | hijackstdio.js | 7 const _write = stdWrite[name] = stream.write; 17 _write.call(stream, data, callback);
|
D | udppair.js | 17 (wrap, buffers, addr) => this._write(wrap, buffers, addr); 48 _write(wrap, buffers, addr) { method in FakeUDPWrap
|
/third_party/node/test/addons/repl-domain-abort/ |
D | test.js | 56 dOutput._write = function _write(chunk, encoding, cb) { function
|
/third_party/node/deps/npm/node_modules/fs-minipass/ |
D | index.js | 36 const _write = Symbol('_write') constant 285 this[_write](buf) 289 [_write] (buf) { 322 this[_write](this[_queue].pop()) 366 [_write] (buf) {
|
/third_party/node/deps/npm/node_modules/duplexer3/ |
D | index.js | 56 DuplexWrapper.prototype._write = function _write(input, encoding, done) { method in DuplexWrapper
|
/third_party/musl/porting/liteos_a_newlib/kernel/src/ |
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/deps/npm/node_modules/sshpk/lib/ |
D | ed-compat.js | 30 Verifier.prototype._write = function (chunk, enc, cb) { method in Verifier 78 Signer.prototype._write = function (chunk, enc, cb) { method in Signer
|
/third_party/mindspore/mindspore/train/summary/ |
D | _writer_pool.py | 110 self._write(plugin, data) 125 self._write(plugin, data) 147 def _write(self, plugin, data): member in WriterPool
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/android/ |
D | android_console.dart | 45 _write('avd name\n'); 73 void _write(String text) {
|