Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: third_party/go/src/golang.org/x/mobile/bind/seq/utf16.go

Issue 1275153002: Remove third_party/golang.org/x/mobile as it is no longer used with Go 1.5. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Remove golang.org/x/mobile Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/go/src/golang.org/x/mobile/bind/seq/utf16.go
diff --git a/third_party/go/src/golang.org/x/mobile/bind/seq/utf16.go b/third_party/go/src/golang.org/x/mobile/bind/seq/utf16.go
deleted file mode 100644
index 8b0698d6e377b7ce30ca956493b42402901483c3..0000000000000000000000000000000000000000
--- a/third_party/go/src/golang.org/x/mobile/bind/seq/utf16.go
+++ /dev/null
@@ -1,96 +0,0 @@
-// Copyright 2014 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package seq
-
-import (
- "errors"
- "fmt"
- "unicode/utf16"
- "unsafe"
-)
-
-// Based heavily on package unicode/utf16 from the Go standard library.
-
-const (
- replacementChar = '\uFFFD' // Unicode replacement character
- maxRune = '\U0010FFFF' // Maximum valid Unicode code point.
-)
-
-const (
- // 0xd800-0xdc00 encodes the high 10 bits of a pair.
- // 0xdc00-0xe000 encodes the low 10 bits of a pair.
- // the value is those 20 bits plus 0x10000.
- surr1 = 0xd800
- surr2 = 0xdc00
- surr3 = 0xe000
-
- surrSelf = 0x10000
-)
-
-func writeUint16(b []byte, v rune) {
- *(*uint16)(unsafe.Pointer(&b[0])) = uint16(v)
-}
-
-func (b *Buffer) WriteUTF16(s string) {
- // The first 4 bytes is the length, as int32 (4-byte aligned).
- // written last.
- // The next n bytes is utf-16 string (1-byte aligned).
- offset0 := align(b.Offset, 4) // length.
- offset1 := align(offset0+4, 1) // contents.
-
- if len(b.Data)-offset1 < 4*len(s) {
- // worst case estimate, everything is surrogate pair
- b.grow(offset1 + 4*len(s) - len(b.Data))
- }
- data := b.Data[offset1:]
- n := 0
- for _, v := range s {
- switch {
- case v < 0, surr1 <= v && v < surr3, v > maxRune:
- v = replacementChar
- fallthrough
- case v < surrSelf:
- writeUint16(data[n:], v)
- n += 2
- default:
- // surrogate pair, two uint16 values
- r1, r2 := utf16.EncodeRune(v)
- writeUint16(data[n:], r1)
- writeUint16(data[n+2:], r2)
- n += 4
- }
- }
-
- // write length at b.Data[b.Offset:], before contents.
- // length is number of uint16 values, not number of bytes.
- b.WriteInt32(int32(n / 2))
-
- b.Offset = offset1 + n
-}
-
-const maxSliceLen = (1<<31 - 1) / 2
-
-func (b *Buffer) ReadError() error {
- if s := b.ReadUTF16(); s != "" {
- return errors.New(s)
- }
- return nil
-}
-
-func (b *Buffer) ReadUTF16() string {
- size := int(b.ReadInt32())
- if size == 0 {
- return ""
- }
- if size < 0 {
- panic(fmt.Sprintf("string size negative: %d", size))
- }
- offset := align(b.Offset, 1)
- u := (*[maxSliceLen]uint16)(unsafe.Pointer(&b.Data[offset]))[:size]
- s := string(utf16.Decode(u)) // TODO: save the []rune alloc
- b.Offset = offset + 2*size
-
- return s
-}

Powered by Google App Engine
This is Rietveld 408576698