/third_party/boost/boost/process/detail/posix/ |
D | basic_pipe.hpp | 28 int _source = -1; member in boost::process::detail::posix::basic_pipe 31 explicit basic_pipe(int source, int sink) : _source(source), _sink(sink) {} in basic_pipe() 32 explicit basic_pipe(int source, int sink, const std::string&) : _source(source), _sink(sink) {} in basic_pipe() 46 _source = fds[0]; in basic_pipe() 51 basic_pipe(basic_pipe&& lhs) : _source(lhs._source), _sink(lhs._sink) in basic_pipe() 53 lhs._source = -1; in basic_pipe() 59 _source = lhs._source; in operator =() 62 lhs._source = -1; in operator =() 71 if (_source != -1) in ~basic_pipe() 72 ::close(_source); in ~basic_pipe() [all …]
|
D | async_pipe.hpp | 21 ::boost::asio::posix::stream_descriptor _source; 31 boost::asio::io_context & ios_sink) : _source(ios_source), _sink(ios_sink) in async_pipe() 37 _source.assign(fds[0]); in async_pipe() 46 async_pipe(async_pipe&& lhs) : _source(std::move(lhs._source)), _sink(std::move(lhs._sink)) in async_pipe() 48 lhs._source.assign (-1); in async_pipe() 56 : _source(ios_source, p.native_source()), _sink(ios_sink, p.native_sink()) in async_pipe() 85 if (_source.is_open()) in cancel() 86 _source.cancel(); in cancel() 93 if (_source.is_open()) in close() 94 _source.close(); in close() [all …]
|
/third_party/boost/boost/process/detail/windows/ |
D | basic_pipe.hpp | 27 ::boost::winapi::HANDLE_ _source = ::boost::winapi::INVALID_HANDLE_VALUE_; 38 : _source(source), _sink(sink) {} in basic_pipe() 41 basic_pipe(basic_pipe&& lhs) : _source(lhs._source), _sink(lhs._sink) in basic_pipe() 43 lhs._source = ::boost::winapi::INVALID_HANDLE_VALUE_; in basic_pipe() 52 if (_source != ::boost::winapi::INVALID_HANDLE_VALUE_) in ~basic_pipe() 53 ::boost::winapi::CloseHandle(_source); in ~basic_pipe() 55 native_handle_type native_source() const {return _source;} in native_source() 58 void assign_source(native_handle_type h) { _source = h;} in assign_source() 63 if (!::boost::winapi::CreatePipe(&_source, &_sink, nullptr, 0)) in basic_pipe() 88 _source, data, count * sizeof(char_type), &read_len, nullptr in read() [all …]
|
D | async_pipe.hpp | 41 ::boost::asio::windows::stream_handle _source; 66 async_pipe(async_pipe&& rhs) : _source(std::move(rhs._source)), _sink(std::move(rhs._sink)) in async_pipe() 73 : _source(ios_source, p.native_source()), _sink(ios_sink, p.native_sink()) in async_pipe() 102 if (_source.is_open()) in cancel() 103 _source.cancel(); in cancel() 113 if (_source.is_open()) in close() 115 _source.close(); in close() 116 _source = handle_type(_source.get_executor()); in close() 126 if (_source.is_open()) in close() 128 _source.close(ec); in close() [all …]
|
/third_party/python/Lib/test/ |
D | test_memoryview.py | 24 def _source(self): member in AbstractMemoryTests 32 b = tp(self._source) 58 b = tp(self._source) 65 b = self.ro_type(self._source) 80 b = self.rw_type(self._source) 130 b = tp(self._source) 139 m = self._view(tp(self._source)) 149 m = self._view(tp(self._source)) 157 m = self._view(tp(self._source)) 184 m = self._view(tp(self._source)) [all …]
|
/third_party/python/Lib/xml/sax/ |
D | expatreader.py | 76 return parser._source.getPublicId() 82 return parser._source.getSystemId() 92 self._source = xmlreader.InputSource() 107 self._source = source 224 source = self._source 278 self._parser = expat.ParserCreate(self._source.getEncoding(), " ", 284 self._parser = expat.ParserCreate(self._source.getEncoding(), 326 return self._source.getPublicId() 329 return self._source.getSystemId() 412 self._source.getSystemId() or [all …]
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/scripts/ |
D | travis-gh-pages | 9 mkdir -p ../gh-pages/_source 10 cp *.md ../gh-pages/_source 11 cp LICENSE ../gh-pages/_source
|
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
D | program.cpp | 30 context(ctx), _devices(ctx.devices()), _source(std::move(source)), in program() 94 return _source; in source()
|
D | program.hpp | 89 std::string _source; member in clover::program
|
/third_party/skia/buildtools/checkdeps/ |
D | rules.py | 28 self._source = source 31 return '"%s%s" from %s.' % (self.allow, self._dir, self._source)
|
/third_party/boost/boost/msm/front/euml/ |
D | phoenix_placeholders.hpp | 20 boost::phoenix::expression::argument<3>::type const _source = {}; variable
|
/third_party/boost/boost/graph/ |
D | vector_as_graph.hpp | 124 val_out_edge_iterator(V s, Iter i) : _source(s), _iter(i) {} in val_out_edge_iterator() 125 Edge operator*() const { return Edge(_source, *_iter); } in operator *() 141 V _source; member in boost::detail::val_out_edge_iterator
|
/third_party/mindspore/cmake/external_libs/ |
D | opencl.cmake | 41 __exec_cmd(COMMAND sed -i "1i\\static const char *${kernel_name}_source =\\\"\\\\n\\\" \\\\"
|
/third_party/boost/boost/process/ |
D | async_pipe.hpp | 160 … native_source() const {return const_cast<boost::asio::windows::stream_handle&>(_source).native();} in native_source()
|
/third_party/flutter/skia/third_party/externals/angle2/doc/ |
D | ExtensionSupport.md | 47 * GL\_ANGLE\_translated\_shader\_source
|
/third_party/mbedtls/scripts/ |
D | generate_ssl_debug_helpers.py | 179 self._source = source_code
|
/third_party/python/Lib/xml/dom/ |
D | expatbuilder.py | 624 self._source = string 700 parser.Parse(self._source, True) 704 self._source = None
|
/third_party/python/Lib/ |
D | ast.py | 679 self._source = [] 710 if self._source: 721 self._source.append(text) 806 self._source = [] 808 return "".join(self._source)
|
/third_party/flatbuffers/include/flatbuffers/ |
D | idl.h | 836 bool Parse(const char *_source, const char **include_paths = nullptr, 966 FLATBUFFERS_CHECKED_ERROR ParseRoot(const char *_source, 969 FLATBUFFERS_CHECKED_ERROR DoParse(const char *_source,
|
/third_party/iowow/cmake/Modules/ |
D | UploadPPA.cmake | 324 ${CPACK_DEBIAN_PACKAGE_NAME}_${DEBIAN_PACKAGE_VERSION}_source.changes
|
/third_party/ejdb/cmake/Modules/ |
D | UploadPPA.cmake | 326 ${CPACK_DEBIAN_PACKAGE_NAME}_${DEBIAN_PACKAGE_VERSION}_source.changes
|
/third_party/python/Doc/distutils/ |
D | sourcedist.rst | 1 .. _source-dist:
|
/third_party/flutter/skia/third_party/externals/imgui/misc/fonts/ |
D | README.txt | 201 The tool optionally used Base85 encoding to reduce the size of _source code_ but the read-only arra…
|
/third_party/jerryscript/tools/pylint/ |
D | pylintrc | 371 exclude-protected=_asdict,_fields,_replace,_source,_make
|
/third_party/node/doc/api/ |
D | stream.md | 2377 // `_source` is an object with readStop() and readStart() methods, 2385 this._source = getLowLevelSourceObject(); 2388 this._source.ondata = (chunk) => { 2391 this._source.readStop(); 2395 this._source.onend = () => { 2402 this._source.readStart();
|