/external/brotli/go/cbrotli/ |
D | writer.go | 63 type Writer struct { struct 64 dst io.Writer 65 state *C.BrotliEncoderState 66 buf, encoded []byte 76 func NewWriter(dst io.Writer, options WriterOptions) *Writer { 90 func (w *Writer) writeChunk(p []byte, op C.BrotliEncoderOperation) (n int, err error) { 129 func (w *Writer) Flush() error { 135 func (w *Writer) Close() error { 146 func (w *Writer) Write(p []byte) (n int, err error) {
|
/external/llvm/include/llvm/Support/ |
D | EndianStream.h | 27 template <endianness endian> struct Writer { struct 29 Writer(raw_ostream &OS) : OS(OS) {} in Writer() argument 42 inline void Writer<little>::write<float>(float Val) { argument
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | EndianStream.h | 51 struct Writer { struct 54 Writer(raw_ostream &OS, endianness Endian) : OS(OS), Endian(Endian) {} in Writer() argument 55 template <typename value_type> void write(ArrayRef<value_type> Val) { in write() 58 template <typename value_type> void write(value_type Val) { in write()
|
/external/rust/crates/bytes/src/buf/ |
D | writer.rs | 11 pub struct Writer<B> { struct 15 pub fn new<B>(buf: B) -> Writer<B> { in new() argument 19 impl<B: BufMut> Writer<B> { impl 77 impl<B: BufMut + Sized> io::Write for Writer<B> { implementation
|
/external/rust/crates/ring/src/io/ |
D | writer.rs | 47 pub(super) struct Writer { struct 52 impl Writer { argument 61 impl Into<Box<[u8]>> for Writer { implementation 68 impl Accumulator for Writer { implementation
|
/external/cronet/third_party/boringssl/src/crypto/fipsmodule/ec/ |
D | make_tables.go | 265 func writeIndent(w io.Writer, indent int) error { 274 func writeWords(w io.Writer, words []uint64, wrap, indent int, format func(uint64) string) error { 303 func writeBNMont(w io.Writer, curve elliptic.Curve, n *big.Int, indent int) error { 310 func writeU64Mont(w io.Writer, curve elliptic.Curve, n *big.Int, indent int) error { 317 func writeU32Mont(w io.Writer, curve elliptic.Curve, n *big.Int, indent int) error { 329 func writeTable(w io.Writer, curve elliptic.Curve, table [][2]*big.Int, isRoot bool, indent int, wr… 377 func writeTables(w io.Writer, curve elliptic.Curve, tables [][][2]*big.Int, isRoot bool, indent int…
|
/external/boringssl/src/crypto/fipsmodule/ec/ |
D | make_tables.go | 265 func writeIndent(w io.Writer, indent int) error { 274 func writeWords(w io.Writer, words []uint64, wrap, indent int, format func(uint64) string) error { 303 func writeBNMont(w io.Writer, curve elliptic.Curve, n *big.Int, indent int) error { 310 func writeU64Mont(w io.Writer, curve elliptic.Curve, n *big.Int, indent int) error { 317 func writeU32Mont(w io.Writer, curve elliptic.Curve, n *big.Int, indent int) error { 329 func writeTable(w io.Writer, curve elliptic.Curve, table [][2]*big.Int, isRoot bool, indent int, wr… 377 func writeTables(w io.Writer, curve elliptic.Curve, tables [][][2]*big.Int, isRoot bool, indent int…
|
/external/spdx-tools/tvsaver/ |
D | tvsaver.go | 20 func Save2_1(doc *v2_1.Document, w io.Writer) error { 27 func Save2_2(doc *v2_2.Document, w io.Writer) error { 34 func Save2_3(doc *v2_3.Document, w io.Writer) error {
|
/external/rust/crates/regex-syntax/src/hir/ |
D | print.rs | 73 struct Writer<W> { struct 77 impl<W: fmt::Write> Visitor for Writer<W> { implementation 211 impl<W: fmt::Write> Writer<W> { implementation
|
/external/rust/crates/anes/src/ |
D | macros.rs | 416 struct Writer { struct 417 buffer: String, 418 flushed_buffer: String, 419 flushed: bool, 422 impl Write for Writer { implementation
|
/external/rust/crates/csv-core/src/ |
D | writer.rs | 34 pub fn build(&self) -> Writer { in build() 160 pub struct Writer { struct 161 state: WriterState, argument 171 impl Clone for Writer { argument 172 fn clone(&self) -> Writer { in clone() 190 impl fmt::Debug for Writer { implementation 221 impl Writer { implementation 479 impl Default for Writer { implementation
|
/external/spdx-tools/reporter/ |
D | reporter.go | 23 func Generate2_1(pkg *v2_1.Package, w io.Writer) error { 86 func Generate2_2(pkg *v2_2.Package, w io.Writer) error { 149 func Generate2_3(pkg *v2_3.Package, w io.Writer) error {
|
/external/rust/crates/env_logger/src/fmt/writer/ |
D | mod.rs | 105 pub(crate) struct Writer { struct 106 inner: BufferWriter, argument 110 impl Writer { argument 175 pub(crate) fn build(&mut self) -> Writer { in build() 213 impl fmt::Debug for Writer { implementation
|
/external/spdx-tools/json/ |
D | writer.go | 14 func Save2_2(doc *v2_2.Document, w io.Writer) error { 29 func Save2_3(doc *v2_3.Document, w io.Writer) error {
|
/external/spdx-tools/yaml/ |
D | writer.go | 14 func Save2_2(doc *v2_2.Document, w io.Writer) error { 29 func Save2_3(doc *v2_3.Document, w io.Writer) error {
|
/external/cronet/third_party/boringssl/src/util/convert_wycheproof/ |
D | convert_wycheproof.go | 50 func printAttribute(w io.Writer, key string, valueI interface{}, isInstruction bool) error { 90 func printComment(w io.Writer, in string) error { 125 func convertWycheproof(f io.Writer, jsonPath string) error {
|
/external/boringssl/src/util/convert_wycheproof/ |
D | convert_wycheproof.go | 48 func printAttribute(w io.Writer, key string, valueI interface{}, isInstruction bool) error { 88 func printComment(w io.Writer, in string) error { 123 func convertWycheproof(f io.Writer, jsonPath string) error {
|
/external/rust/crates/flate2/src/ |
D | zio.rs | 8 pub struct Writer<W: Write, D: Ops> { struct 9 obj: Option<W>, 10 pub data: D, 11 buf: Vec<u8>, 161 impl<W: Write, D: Ops> Writer<W, D> { impl 252 impl<W: Write, D: Ops> Write for Writer<W, D> { implementation 282 impl<W: Write, D: Ops> Drop for Writer<W, D> { implementation
|
/external/protobuf/examples/go/cmd/list_people/ |
D | list_people.go | 14 func writePerson(w io.Writer, p *pb.Person) { 34 func listPeople(w io.Writer, book *pb.AddressBook) {
|
/external/cronet/third_party/protobuf/examples/go/cmd/list_people/ |
D | list_people.go | 14 func writePerson(w io.Writer, p *pb.Person) { 34 func listPeople(w io.Writer, book *pb.AddressBook) {
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/vscode/src/lsp/protocol/ |
D | log.go | 35 func LoggingStream(str jsonrpc2.Stream, w io.Writer) jsonrpc2.Stream { 129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) { 148 func logOut(outfd io.Writer, data []byte) { 201 func logIn(outfd io.Writer, data []byte) {
|
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
D | log.go | 35 func LoggingStream(str jsonrpc2.Stream, w io.Writer) jsonrpc2.Stream { 129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) { 148 func logOut(outfd io.Writer, data []byte) { 201 func logIn(outfd io.Writer, data []byte) {
|
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
D | log.go | 35 func LoggingStream(str jsonrpc2.Stream, w io.Writer) jsonrpc2.Stream { 129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) { 148 func logOut(outfd io.Writer, data []byte) { 201 func logIn(outfd io.Writer, data []byte) {
|
/external/rust/crates/csv/src/ |
D | writer.rs | 508 pub struct Writer<W: io::Write> { struct 509 core: CoreWriter, argument 512 state: WriterState, argument 561 impl<W: io::Write> Drop for Writer<W> { implementation 569 impl Writer<File> { impl 596 impl<W: io::Write> Writer<W> { impl
|
/external/rust/crates/der/src/ |
D | writer.rs | 13 pub trait Writer { trait
|