Home
last modified time | relevance | path

Searched defs:MethodSet (Results 1 – 2 of 2) sorted by relevance

/prebuilts/go/linux-x86/src/go/types/
Dmethodset.go18 type MethodSet struct { struct
19 list []*Selection
22 func (s *MethodSet) String() string {
37 func (s *MethodSet) Len() int { return len(s.list) }
40 func (s *MethodSet) At(i int) *Selection { return s.list[i] }
43 func (s *MethodSet) Lookup(pkg *Package, name string) *Selection {
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/tools/go/types/typeutil/
Dmethodsetcache.go30 func (cache *MethodSetCache) MethodSet(T types.Type) *types.MethodSet { func