OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WriteRune
(Results
1 - 6
of
6
) sorted by null
/prebuilts/go/darwin-x86/src/bytes/
buffer.go
237
//
WriteRune
appends the UTF-8 encoding of Unicode code point r to the
239
// included to match bufio.Writer's
WriteRune
. The buffer is grown as needed;
240
// if it becomes too large,
WriteRune
will panic with ErrTooLarge.
241
func (b *Buffer)
WriteRune
(r rune) (n int, err error) {
/prebuilts/go/linux-x86/src/bytes/
buffer.go
237
//
WriteRune
appends the UTF-8 encoding of Unicode code point r to the
239
// included to match bufio.Writer's
WriteRune
. The buffer is grown as needed;
240
// if it becomes too large,
WriteRune
will panic with ErrTooLarge.
241
func (b *Buffer)
WriteRune
(r rune) (n int, err error) {
/prebuilts/go/darwin-x86/src/bufio/
bufio.go
625
//
WriteRune
writes a single Unicode code point, returning
627
func (b *Writer)
WriteRune
(r rune) (size int, err error) {
/prebuilts/go/linux-x86/src/bufio/
bufio.go
625
//
WriteRune
writes a single Unicode code point, returning
627
func (b *Writer)
WriteRune
(r rune) (size int, err error) {
/prebuilts/go/darwin-x86/src/fmt/
print.go
93
func (bp *buffer)
WriteRune
(r rune) error {
173
p.buf.
WriteRune
(c)
/prebuilts/go/linux-x86/src/fmt/
print.go
93
func (bp *buffer)
WriteRune
(r rune) error {
173
p.buf.
WriteRune
(c)
Completed in 711 milliseconds