Lines Matching defs:Writer

22 type Writer struct {  struct
23 Flags Flags
25 Error error
26 Buffer buffer.Buffer
27 NoEscapeHTML bool
31 func (w *Writer) Size() int {
36 func (w *Writer) DumpTo(out io.Writer) (written int, err error) {
42 func (w *Writer) BuildBytes(reuse ...[]byte) ([]byte, error) {
52 func (w *Writer) ReadCloser() (io.ReadCloser, error) {
61 func (w *Writer) RawByte(c byte) {
66 func (w *Writer) RawString(s string) {
72 func (w *Writer) Raw(data []byte, err error) {
87 func (w *Writer) RawText(data []byte, err error) {
101 func (w *Writer) Base64Bytes(data []byte) {
111 func (w *Writer) Uint8(n uint8) {
116 func (w *Writer) Uint16(n uint16) {
121 func (w *Writer) Uint32(n uint32) {
126 func (w *Writer) Uint(n uint) {
131 func (w *Writer) Uint64(n uint64) {
136 func (w *Writer) Int8(n int8) {
141 func (w *Writer) Int16(n int16) {
146 func (w *Writer) Int32(n int32) {
151 func (w *Writer) Int(n int) {
156 func (w *Writer) Int64(n int64) {
161 func (w *Writer) Uint8Str(n uint8) {
168 func (w *Writer) Uint16Str(n uint16) {
175 func (w *Writer) Uint32Str(n uint32) {
182 func (w *Writer) UintStr(n uint) {
189 func (w *Writer) Uint64Str(n uint64) {
196 func (w *Writer) UintptrStr(n uintptr) {
203 func (w *Writer) Int8Str(n int8) {
210 func (w *Writer) Int16Str(n int16) {
217 func (w *Writer) Int32Str(n int32) {
224 func (w *Writer) IntStr(n int) {
231 func (w *Writer) Int64Str(n int64) {
238 func (w *Writer) Float32(n float32) {
243 func (w *Writer) Float32Str(n float32) {
250 func (w *Writer) Float64(n float64) {
255 func (w *Writer) Float64Str(n float64) {
262 func (w *Writer) Bool(v bool) {
292 func (w *Writer) String(s string) {
366 func (w *Writer) base64(in []byte) {