Home
last modified time | relevance | path

Searched refs:int32Slice (Results 1 – 4 of 4) sorted by relevance

/external/golang-protobuf/proto/
Dtext.go671 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/
Dtext.go671 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))
Dmessage_set.go254 sort.Sort(int32Slice(ids)) // int32Slice defined in text.go
/external/golang-protobuf/jsonpb/
Djsonpb.go150 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))