OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ReadRune
(Results
1 - 10
of
10
) sorted by null
/prebuilts/go/darwin-x86/src/bytes/
reader.go
85
func (r *Reader)
ReadRune
() (ch rune, size int, err error) {
102
return errors.New("bytes.Reader.UnreadRune: previous operation was not
ReadRune
")
buffer.go
306
//
ReadRune
reads and returns the next UTF-8-encoded
311
func (b *Buffer)
ReadRune
() (r rune, size int, err error) {
329
// UnreadRune unreads the last rune returned by
ReadRune
.
331
// not a
ReadRune
, UnreadRune returns an error. (In this regard
336
return errors.New("bytes.Buffer: UnreadRune: previous operation was not
ReadRune
")
/prebuilts/go/darwin-x86/src/strings/
reader.go
84
func (r *Reader)
ReadRune
() (ch rune, size int, err error) {
101
return errors.New("strings.Reader.UnreadRune: previous operation was not
ReadRune
")
/prebuilts/go/linux-x86/src/bytes/
reader.go
85
func (r *Reader)
ReadRune
() (ch rune, size int, err error) {
102
return errors.New("bytes.Reader.UnreadRune: previous operation was not
ReadRune
")
buffer.go
306
//
ReadRune
reads and returns the next UTF-8-encoded
311
func (b *Buffer)
ReadRune
() (r rune, size int, err error) {
329
// UnreadRune unreads the last rune returned by
ReadRune
.
331
// not a
ReadRune
, UnreadRune returns an error. (In this regard
336
return errors.New("bytes.Buffer: UnreadRune: previous operation was not
ReadRune
")
/prebuilts/go/linux-x86/src/strings/
reader.go
84
func (r *Reader)
ReadRune
() (ch rune, size int, err error) {
101
return errors.New("strings.Reader.UnreadRune: previous operation was not
ReadRune
")
/prebuilts/go/darwin-x86/src/bufio/
bufio.go
255
//
ReadRune
reads a single UTF-8 encoded Unicode character and returns the
258
func (b *Reader)
ReadRune
() (r rune, size int, err error) {
277
// the buffer was not a
ReadRune
, UnreadRune returns an error. (In this
/prebuilts/go/linux-x86/src/bufio/
bufio.go
255
//
ReadRune
reads a single UTF-8 encoded Unicode character and returns the
258
func (b *Reader)
ReadRune
() (r rune, size int, err error) {
277
// the buffer was not a
ReadRune
, UnreadRune returns an error. (In this
/prebuilts/go/darwin-x86/src/fmt/
scan.go
30
//
ReadRune
reads the next rune (Unicode code point) from the input.
31
// If invoked during Scanln, Fscanln, or Sscanln,
ReadRune
() will
34
ReadRune
() (r rune, size int, err error)
35
// UnreadRune causes the next call to
ReadRune
to return the same rune.
53
// Because
ReadRune
is implemented by the interface, Read should never be
169
prevRune rune // last rune returned by
ReadRune
190
return 0, errors.New("ScanState's Read should not be called. Use
ReadRune
")
193
func (s *ss)
ReadRune
() (r rune, size int, err error) {
207
r, size, err = s.rr.
ReadRune
()
227
r, _, err := s.
ReadRune
()
[
all
...]
/prebuilts/go/linux-x86/src/fmt/
scan.go
30
//
ReadRune
reads the next rune (Unicode code point) from the input.
31
// If invoked during Scanln, Fscanln, or Sscanln,
ReadRune
() will
34
ReadRune
() (r rune, size int, err error)
35
// UnreadRune causes the next call to
ReadRune
to return the same rune.
53
// Because
ReadRune
is implemented by the interface, Read should never be
169
prevRune rune // last rune returned by
ReadRune
190
return 0, errors.New("ScanState's Read should not be called. Use
ReadRune
")
193
func (s *ss)
ReadRune
() (r rune, size int, err error) {
207
r, size, err = s.rr.
ReadRune
()
227
r, _, err := s.
ReadRune
()
[
all
...]
Completed in 353 milliseconds