Home
last modified time | relevance | path

Searched defs:textWriter (Results 1 – 3 of 3) sorted by relevance

/external/golang-protobuf/proto/
Dtext.go70 type textWriter struct { struct
71 ind int
72 complete bool // if the current position is a complete line
73 compact bool // whether to write out as a one-liner
74 w writer
77 func (w *textWriter) WriteString(s string) (n int, err error) {
91 func (w *textWriter) Write(p []byte) (n int, err error) {
140 func (w *textWriter) WriteByte(c byte) error {
152 func (w *textWriter) indent() { w.ind++ }
154 func (w *textWriter) unindent() {
[all …]
/external/syzkaller/vendor/github.com/golang/protobuf/proto/
Dtext.go70 type textWriter struct { struct
71 ind int
72 complete bool // if the current position is a complete line
73 compact bool // whether to write out as a one-liner
74 w writer
77 func (w *textWriter) WriteString(s string) (n int, err error) {
91 func (w *textWriter) Write(p []byte) (n int, err error) {
140 func (w *textWriter) WriteByte(c byte) error {
152 func (w *textWriter) indent() { w.ind++ }
154 func (w *textWriter) unindent() {
[all …]
/external/grpc-grpc/src/csharp/Grpc.Core/Logging/
DTextWriterLogger.cs41 public TextWriterLogger(TextWriter textWriter) : this(() => textWriter) in TextWriterLogger()