HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 501 - 525 of 1308) sorted by null

<<21222324252627282930>>

  /prebuilts/go/darwin-x86/src/net/http/httputil/
httputil.go 33 func NewChunkedWriter(w io.Writer) io.WriteCloser {
  /prebuilts/go/darwin-x86/src/net/
pipe_test.go 13 func checkPipeWrite(t *testing.T, w io.Writer, data []byte, c chan int) {
  /prebuilts/go/darwin-x86/src/runtime/pprof/
pprof.go 118 // output to a writer during profiling.
125 write func(io.Writer, int) error
297 func (p *Profile) WriteTo(w io.Writer, debug int) error {
345 func printCountProfile(w io.Writer, debug int, name string, p countProfile) error {
433 func printStackRecord(w io.Writer, stk []uintptr, allFrames bool) {
465 func WriteHeapProfile(w io.Writer) error {
476 func writeHeap(w io.Writer, debug int) error {
580 func writeThreadCreate(w io.Writer, debug int) error {
590 func writeGoroutine(w io.Writer, debug int) error {
597 func writeGoroutineStacks(w io.Writer) error
    [all...]
  /prebuilts/go/darwin-x86/src/text/tabwriter/
example_test.go 14 w := new(tabwriter.Writer)
  /prebuilts/go/linux-x86/src/encoding/gob/
timing_test.go 22 func benchmarkEndToEnd(b *testing.B, ctor func() interface{}, pipe func() (r io.Reader, w io.Writer, err error)) {
45 }, func() (r io.Reader, w io.Writer, err error) {
54 }, func() (r io.Reader, w io.Writer, err error) {
69 }, func() (r io.Reader, w io.Writer, err error) {
  /prebuilts/go/linux-x86/src/io/
multi_test.go 71 Writer
85 Writer
117 Writer
159 slice := []Writer{&buf}
  /prebuilts/go/linux-x86/src/net/http/
header.go 58 func (h Header) Write(w io.Writer) error {
97 // stringWriter implements WriteString on a Writer.
99 w io.Writer
147 func (h Header) WriteSubset(w io.Writer, exclude map[string]bool) error {
  /prebuilts/go/linux-x86/src/net/http/httputil/
httputil.go 33 func NewChunkedWriter(w io.Writer) io.WriteCloser {
  /prebuilts/go/linux-x86/src/net/
pipe_test.go 13 func checkPipeWrite(t *testing.T, w io.Writer, data []byte, c chan int) {
  /prebuilts/go/linux-x86/src/runtime/pprof/
pprof.go 118 // output to a writer during profiling.
125 write func(io.Writer, int) error
297 func (p *Profile) WriteTo(w io.Writer, debug int) error {
345 func printCountProfile(w io.Writer, debug int, name string, p countProfile) error {
433 func printStackRecord(w io.Writer, stk []uintptr, allFrames bool) {
465 func WriteHeapProfile(w io.Writer) error {
476 func writeHeap(w io.Writer, debug int) error {
580 func writeThreadCreate(w io.Writer, debug int) error {
590 func writeGoroutine(w io.Writer, debug int) error {
597 func writeGoroutineStacks(w io.Writer) error
    [all...]
  /prebuilts/go/linux-x86/src/text/tabwriter/
example_test.go 14 w := new(tabwriter.Writer)
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/report/
source.go 28 func printSource(w io.Writer, rpt *Report) error {
102 func printWebSource(w io.Writer, rpt *Report, obj plugin.ObjTool) error {
243 func printHeader(w io.Writer, rpt *Report) {
258 func printFunctionHeader(w io.Writer, name, path string, flatSum, cumSum int64, rpt *Report) {
269 func printFunctionSourceLine(w io.Writer, fn *node, assembly nodes, rpt *Report) {
305 func printFunctionClosing(w io.Writer) {
310 func printPageClosing(w io.Writer) {
  /prebuilts/go/darwin-x86/src/log/
log.go 47 // output to an io.Writer. Each logging operation makes a single call to
48 // the Writer's Write method. A Logger can be used simultaneously from
49 // multiple goroutines; it guarantees to serialize access to the Writer.
54 out io.Writer // destination for output
62 func New(out io.Writer, prefix string, flag int) *Logger {
67 func (l *Logger) SetOutput(w io.Writer) {
254 func SetOutput(w io.Writer) {
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/report/
source.go 28 func printSource(w io.Writer, rpt *Report) error {
102 func printWebSource(w io.Writer, rpt *Report, obj plugin.ObjTool) error {
243 func printHeader(w io.Writer, rpt *Report) {
258 func printFunctionHeader(w io.Writer, name, path string, flatSum, cumSum int64, rpt *Report) {
269 func printFunctionSourceLine(w io.Writer, fn *node, assembly nodes, rpt *Report) {
305 func printFunctionClosing(w io.Writer) {
310 func printPageClosing(w io.Writer) {
  /prebuilts/go/linux-x86/src/log/
log.go 47 // output to an io.Writer. Each logging operation makes a single call to
48 // the Writer's Write method. A Logger can be used simultaneously from
49 // multiple goroutines; it guarantees to serialize access to the Writer.
54 out io.Writer // destination for output
62 func New(out io.Writer, prefix string, flag int) *Logger {
67 func (l *Logger) SetOutput(w io.Writer) {
254 func SetOutput(w io.Writer) {
  /external/fmtlib/fmt/
format.cc 110 typedef void (*FormatFunc)(Writer &, int, StringRef);
181 void format_error_code(Writer &out, int error_code,
208 // Use Writer::data instead of Writer::c_str to avoid potential memory
220 Writer &out, int error_code, StringRef message) FMT_NOEXCEPT {
360 Writer &out, int error_code, StringRef message) FMT_NOEXCEPT {
389 Writer &out, int error_code, StringRef message) FMT_NOEXCEPT {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ChannelsTest.java 26 import java.io.Writer;
509 Writer testWriter = Channels.newWriter(null, Charset.forName(CODE_SET).newEncoder(), -1);
530 Writer testWriter = Channels.newWriter(wbChannel, Charset.forName(
552 Writer testWriter = Channels.newWriter(wbChannel, CODE_SET); //$NON-NLS-1$
553 Writer testWriter_s = Channels.newWriter(wbChannel, Charset.forName(
566 // writer continues to write after '1',what the fouts write
  /prebuilts/go/darwin-x86/src/archive/zip/
zip_test.go 41 t.Fatalf("Writer.Close: %v", err)
123 // It's an io.Writer (like a bytes.Buffer) and also an io.ReaderAt,
266 gen := func(wantOff uint64) func(*Writer) {
267 return func(w *Writer) {
310 gen := func(numRec int) func(*Writer) {
311 return func(w *Writer) {
342 // suffixSaver is an io.Writer & io.ReaderAt that remembers the last 0
404 func generatesZip64(t *testing.T, f func(w *Writer)) bool {
461 gen := func(wantLen int64) func(*Writer) {
462 return func(w *Writer) {
    [all...]
  /prebuilts/go/linux-x86/src/archive/zip/
zip_test.go 41 t.Fatalf("Writer.Close: %v", err)
123 // It's an io.Writer (like a bytes.Buffer) and also an io.ReaderAt,
266 gen := func(wantOff uint64) func(*Writer) {
267 return func(w *Writer) {
310 gen := func(numRec int) func(*Writer) {
311 return func(w *Writer) {
342 // suffixSaver is an io.Writer & io.ReaderAt that remembers the last 0
404 func generatesZip64(t *testing.T, f func(w *Writer)) bool {
461 gen := func(wantLen int64) func(*Writer) {
462 return func(w *Writer) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 707 final java.io.Writer writer = m_writer; local
710 writer.write("<!DOCTYPE ");
711 writer.write(name);
715 writer.write(" PUBLIC \"");
716 writer.write(doctypePublic);
717 writer.write('"');
723 writer.write(" SYSTEM \"");
725 writer.write(" \"");
727 writer.write(doctypeSystem)
864 final java.io.Writer writer = m_writer; local
974 final java.io.Writer writer = m_writer; local
1694 final java.io.Writer writer = m_writer; local
1738 final java.io.Writer writer = m_writer; local
1935 final java.io.Writer writer = m_writer; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/
commands.go 44 type PostProcessor func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error
137 return func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error {
154 return func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error {
172 return func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error {
197 return func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error {
  /prebuilts/go/darwin-x86/src/go/doc/
comment.go 25 func commentEscape(w io.Writer, text string, nice bool) {
107 func emphasize(w io.Writer, line string, words map[string]string, nice bool) {
289 func ToHTML(w io.Writer, text string, words map[string]string) {
403 func ToText(w io.Writer, text string, indent, preIndent string, width int) {
438 out io.Writer
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/commands/
commands.go 44 type PostProcessor func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error
137 return func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error {
154 return func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error {
172 return func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error {
197 return func(input *bytes.Buffer, output io.Writer, ui plugin.UI) error {
  /prebuilts/go/linux-x86/src/go/doc/
comment.go 25 func commentEscape(w io.Writer, text string, nice bool) {
107 func emphasize(w io.Writer, line string, words map[string]string, nice bool) {
289 func ToHTML(w io.Writer, text string, words map[string]string) {
403 func ToText(w io.Writer, text string, indent, preIndent string, width int) {
438 out io.Writer
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 37 import java.io.Writer;
219 public void writeTo(OutputStream out, Writer humanOut, boolean verbose)
241 public byte[] toDex(Writer humanOut, boolean verbose)

Completed in 1707 milliseconds

<<21222324252627282930>>