/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue9321.go | 22 pprof.Lookup("goroutine").WriteTo(buf, 2)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue9321.go | 22 pprof.Lookup("goroutine").WriteTo(buf, 2)
|
/external/v8/test/cctest/wasm/ |
test-run-wasm-module.cc | 70 TestModule(writer->WriteTo(&zone), kReturnValue); 92 TestModule(writer->WriteTo(&zone), 99); 111 TestModule(writer->WriteTo(&zone), 0xddccbbaa); 144 TestModule(writer->WriteTo(&zone), 11); 170 TestModule(writer->WriteTo(&zone), 55); 197 TestModule(writer->WriteTo(&zone), 97);
|
/external/clang/lib/Frontend/Rewrite/ |
InclusionRewriter.cpp | 76 unsigned &WriteFrom, unsigned WriteTo, 240 /// \p WriteTo - 1. 242 unsigned &WriteFrom, unsigned WriteTo, 245 if (WriteTo <= WriteFrom) 249 WriteFrom = WriteTo; 257 LocalEOL[0] == (FromFile.getBufferStart() + WriteTo)[-1] && 258 LocalEOL[1] == (FromFile.getBufferStart() + WriteTo)[0]) 259 WriteTo++; 262 WriteTo - WriteFrom); 284 WriteFrom = WriteTo; [all...] |
/external/boringssl/src/ssl/test/runner/ |
recordingconn.go | 30 // WriteTo can be used to produce output that can be later be loaded with 74 // WriteTo writes hex dumps to w that contains the recorded traffic. 75 func (r *recordingConn) WriteTo(w io.Writer) {
|
/prebuilts/go/darwin-x86/src/bytes/ |
reader.go | 130 // WriteTo implements the io.WriterTo interface. 131 func (r *Reader) WriteTo(w io.Writer) (n int64, err error) { 139 panic("bytes.Reader.WriteTo: invalid Write count")
|
example_test.go | 20 b.WriteTo(os.Stdout)
|
reader_test.go | 148 n, err := r.WriteTo(&b) 192 {"WriteTo", func(r *Reader) { r.WriteTo(&Buffer{}) }}, 226 // regardless of the presence of a WriteTo method.
|
/prebuilts/go/darwin-x86/src/net/ |
packetconn_test.go | 76 if _, err := c1.WriteTo(wb, c2.LocalAddr()); err != nil { 82 if _, err := c2.WriteTo(wb, c1.LocalAddr()); err != nil { 145 if _, err := c1.WriteTo(wb, dst); err != nil {
|
iprawsock_plan9.go | 53 // WriteTo implements the PacketConn WriteTo method. 54 func (c *IPConn) WriteTo(b []byte, addr Addr) (int, error) { 77 // address laddr. The returned connection's ReadFrom and WriteTo
|
udp_test.go | 99 _, err = c.(*UDPConn).WriteTo(b, ra) 145 _, err = c.WriteTo(b, ra) 305 n, err := c.WriteTo(nil, c.LocalAddr()) 343 n, err := c.WriteTo(b, c.LocalAddr())
|
udpsock_plan9.go | 95 // WriteTo implements the PacketConn WriteTo method. 96 func (c *UDPConn) WriteTo(b []byte, addr Addr) (int, error) { 174 // discover the port. The returned connection's ReadFrom and WriteTo
|
unixsock_plan9.go | 53 // WriteTo implements the PacketConn WriteTo method. 54 func (c *UnixConn) WriteTo(b []byte, addr Addr) (int, error) { 143 // The returned connection's ReadFrom and WriteTo methods can be used
|
/prebuilts/go/darwin-x86/src/strings/ |
reader.go | 129 // WriteTo implements the io.WriterTo interface. 130 func (r *Reader) WriteTo(w io.Writer) (n int64, err error) { 138 panic("strings.Reader.WriteTo: invalid WriteString count")
|
/prebuilts/go/linux-x86/src/bytes/ |
reader.go | 130 // WriteTo implements the io.WriterTo interface. 131 func (r *Reader) WriteTo(w io.Writer) (n int64, err error) { 139 panic("bytes.Reader.WriteTo: invalid Write count")
|
/prebuilts/go/linux-x86/src/net/ |
packetconn_test.go | 76 if _, err := c1.WriteTo(wb, c2.LocalAddr()); err != nil { 82 if _, err := c2.WriteTo(wb, c1.LocalAddr()); err != nil { 145 if _, err := c1.WriteTo(wb, dst); err != nil {
|
iprawsock_plan9.go | 53 // WriteTo implements the PacketConn WriteTo method. 54 func (c *IPConn) WriteTo(b []byte, addr Addr) (int, error) { 77 // address laddr. The returned connection's ReadFrom and WriteTo
|
/prebuilts/go/linux-x86/src/strings/ |
reader.go | 129 // WriteTo implements the io.WriterTo interface. 130 func (r *Reader) WriteTo(w io.Writer) (n int64, err error) { 138 panic("strings.Reader.WriteTo: invalid WriteString count")
|
/external/v8/src/parsing/ |
preparse-data.cc | 68 function_store_.WriteTo(Vector<unsigned>(
|
/prebuilts/go/darwin-x86/src/io/ |
io_test.go | 16 // An version of bytes.Buffer without ReadFrom and WriteTo 23 // Simple tests, primarily to verify the ReadFrom and WriteTo callouts inside Copy, CopyBuffer and CopyN. 66 rb := new(bytes.Buffer) // implements WriteTo. 75 // Version of bytes.Buffer that checks whether WriteTo was called or not 81 func (wt *writeToChecker) WriteTo(w Writer) (int64, error) { 83 return wt.Buffer.WriteTo(w) 97 t.Errorf("WriteTo was not prioritized over ReadFrom") 150 rb := new(bytes.Buffer) // implements WriteTo.
|
/prebuilts/go/linux-x86/src/io/ |
io_test.go | 16 // An version of bytes.Buffer without ReadFrom and WriteTo 23 // Simple tests, primarily to verify the ReadFrom and WriteTo callouts inside Copy, CopyBuffer and CopyN. 66 rb := new(bytes.Buffer) // implements WriteTo. 75 // Version of bytes.Buffer that checks whether WriteTo was called or not 81 func (wt *writeToChecker) WriteTo(w Writer) (int64, error) { 83 return wt.Buffer.WriteTo(w) 97 t.Errorf("WriteTo was not prioritized over ReadFrom") 150 rb := new(bytes.Buffer) // implements WriteTo.
|
/prebuilts/go/darwin-x86/src/crypto/tls/ |
handshake_test.go | 41 // WriteTo can be used to produce output that can be later be loaded with 90 // WriteTo writes Go source code to w that contains the recorded traffic. 91 func (r *recordingConn) WriteTo(w io.Writer) {
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
handshake_test.go | 41 // WriteTo can be used to produce output that can be later be loaded with 90 // WriteTo writes Go source code to w that contains the recorded traffic. 91 func (r *recordingConn) WriteTo(w io.Writer) {
|
/external/boringssl/src/crypto/err/ |
err_data_generate.go | 139 func (st *stringList) WriteTo(out stringWriter, name string) { 276 e.reasons.WriteTo(out, "Reason")
|
/prebuilts/go/darwin-x86/src/go/types/ |
scope.go | 154 // WriteTo writes a string representation of the scope to w, 159 func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) { 178 s.WriteTo(w, n+1, recurse) 188 s.WriteTo(&buf, 0, false)
|