Home
last modified time | relevance | path

Searched refs:textWriter (Results 1 – 2 of 2) sorted by relevance

/external/golang-protobuf/proto/
Dtext.go70 type textWriter struct { struct
77 func (w *textWriter) WriteString(s string) (n int, err error) { argument
91 func (w *textWriter) Write(p []byte) (n int, err error) { argument
140 func (w *textWriter) WriteByte(c byte) error { argument
152 func (w *textWriter) indent() { w.ind++ } argument
154 func (w *textWriter) unindent() { argument
162 func writeName(w *textWriter, props *Properties) error { argument
207 func (tm *TextMarshaler) writeProto3Any(w *textWriter, sv reflect.Value) (bool, error) { argument
253 func (tm *TextMarshaler) writeStruct(w *textWriter, sv reflect.Value) error { argument
462 func (tm *TextMarshaler) writeAny(w *textWriter, v reflect.Value, props *Properties) error { argument
[all …]
/external/grpc-grpc/src/csharp/Grpc.Core/Logging/
DTextWriterLogger.cs41 public TextWriterLogger(TextWriter textWriter) : this(() => textWriter) in TextWriterLogger() argument
43 GrpcPreconditions.CheckNotNull(textWriter); in TextWriterLogger()