Searched refs:int32Slice (Results 1 – 4 of 4) sorted by relevance
/external/golang-protobuf/proto/ |
D | text.go | 671 type int32Slice []int32 type 673 func (s int32Slice) Len() int { return len(s) } 674 func (s int32Slice) Less(i, j int) bool { return s[i] < s[j] } 675 func (s int32Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } 695 sort.Sort(int32Slice(ids))
|
/external/syzkaller/vendor/github.com/golang/protobuf/proto/ |
D | text.go | 671 type int32Slice []int32 type 673 func (s int32Slice) Len() int { return len(s) } 674 func (s int32Slice) Less(i, j int) bool { return s[i] < s[j] } 675 func (s int32Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } 695 sort.Sort(int32Slice(ids))
|
D | message_set.go | 254 sort.Sort(int32Slice(ids)) // int32Slice defined in text.go
|
/external/golang-protobuf/jsonpb/ |
D | jsonpb.go | 150 type int32Slice []int32 type 159 func (s int32Slice) Len() int { return len(s) } 160 func (s int32Slice) Less(i, j int) bool { return s[i] < s[j] } 161 func (s int32Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } 350 sort.Sort(int32Slice(ids))
|