Home | History | Annotate | Download | only in reflect

Lines Matching refs:interface

30 		if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
35 // convert interface key
36 m := make(map[interface{}]int)
43 if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
48 // convert interface value
49 m := make(map[int]interface{})
56 if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
61 // convert both interface key and interface value
62 m := make(map[interface{}]interface{})
69 if n := mv.MapIndex(ValueOf(1)).Interface().(int); n != 2 {
168 x interface{}
169 t interface{}
189 type notASTExpr interface {
206 x interface{}
207 t interface{}
215 {new(Ch), new(<-chan interface{}), true},
221 type Ch <-chan interface{}