HomeSort by relevance Sort by last modified time
    Searched refs:TypeOf (Results 1 - 25 of 221) sorted by null

1 2 3 4 5 6 7 8 9

  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/exe/
exe.go 29 reflect.TypeOf(os.Stdout).Elem()
34 if reflect.TypeOf(F).Out(0) != reflect.TypeOf(c) {
38 sp := reflect.New(reflect.TypeOf(slicePtr).Elem())
41 if reflect.TypeOf(s) != reflect.TypeOf(slicePtr) {
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/exe/
exe.go 29 reflect.TypeOf(os.Stdout).Elem()
34 if reflect.TypeOf(F).Out(0) != reflect.TypeOf(c) {
38 sp := reflect.New(reflect.TypeOf(slicePtr).Elem())
41 if reflect.TypeOf(s) != reflect.TypeOf(slicePtr) {
  /prebuilts/go/darwin-x86/misc/cgo/testplugin/src/issue19529/
plugin.go 12 println(reflect.TypeOf(Foo{}).Field(0).Tag)
  /prebuilts/go/linux-x86/misc/cgo/testplugin/src/issue19529/
plugin.go 12 println(reflect.TypeOf(Foo{}).Field(0).Tag)
  /prebuilts/go/darwin-x86/misc/cgo/testplugin/src/issue18584/
plugin.go 18 return reflect.TypeOf(F).Out(0) == reflect.TypeOf(c)
  /prebuilts/go/darwin-x86/test/fixedbugs/bug468.dir/
p2.go 17 t1 := reflect.TypeOf(v1)
18 t2 := reflect.TypeOf(v2)
  /prebuilts/go/darwin-x86/test/fixedbugs/issue21120.dir/
b.go 17 v := reflect.TypeOf(s)
27 v := reflect.TypeOf(s)
  /prebuilts/go/linux-x86/misc/cgo/testplugin/src/issue18584/
plugin.go 18 return reflect.TypeOf(F).Out(0) == reflect.TypeOf(c)
  /prebuilts/go/linux-x86/test/fixedbugs/bug468.dir/
p2.go 17 t1 := reflect.TypeOf(v1)
18 t2 := reflect.TypeOf(v2)
  /prebuilts/go/linux-x86/test/fixedbugs/issue21120.dir/
b.go 17 v := reflect.TypeOf(s)
27 v := reflect.TypeOf(s)
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15439.go 15 ta := reflect.TypeOf(a)
16 tb := reflect.TypeOf(b)
bug444.go 20 reflect.TypeOf(nil)
21 reflect.TypeOf(T(nil)) // used to miscompile
gcc65755.go 19 return reflect.TypeOf(s{}).Field(0).Name
28 return reflect.TypeOf(s{}).Field(0).Name
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15439.go 15 ta := reflect.TypeOf(a)
16 tb := reflect.TypeOf(b)
bug444.go 20 reflect.TypeOf(nil)
21 reflect.TypeOf(T(nil)) // used to miscompile
gcc65755.go 19 return reflect.TypeOf(s{}).Field(0).Name
28 return reflect.TypeOf(s{}).Field(0).Name
  /prebuilts/go/darwin-x86/test/fixedbugs/issue19028.dir/
main.go 22 typ := reflect.TypeOf(x)
  /prebuilts/go/linux-x86/test/fixedbugs/issue19028.dir/
main.go 22 typ := reflect.TypeOf(x)
  /prebuilts/go/darwin-x86/src/encoding/gob/
type_test.go 52 newtyp := getTypeUnlocked("int", reflect.TypeOf(int(0)))
56 newtyp = getTypeUnlocked("uint", reflect.TypeOf(uint(0)))
60 newtyp = getTypeUnlocked("string", reflect.TypeOf("hello"))
68 a3int := getTypeUnlocked("foo", reflect.TypeOf(a3))
69 newa3int := getTypeUnlocked("bar", reflect.TypeOf(a3))
74 a4int := getTypeUnlocked("goo", reflect.TypeOf(a4))
79 a3bool := getTypeUnlocked("", reflect.TypeOf(b3))
92 sint := getTypeUnlocked("slice", reflect.TypeOf(s))
94 newsint := getTypeUnlocked("slice1", reflect.TypeOf(news))
99 sbool := getTypeUnlocked("", reflect.TypeOf(b)
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
type_test.go 52 newtyp := getTypeUnlocked("int", reflect.TypeOf(int(0)))
56 newtyp = getTypeUnlocked("uint", reflect.TypeOf(uint(0)))
60 newtyp = getTypeUnlocked("string", reflect.TypeOf("hello"))
68 a3int := getTypeUnlocked("foo", reflect.TypeOf(a3))
69 newa3int := getTypeUnlocked("bar", reflect.TypeOf(a3))
74 a4int := getTypeUnlocked("goo", reflect.TypeOf(a4))
79 a3bool := getTypeUnlocked("", reflect.TypeOf(b3))
92 sint := getTypeUnlocked("slice", reflect.TypeOf(s))
94 newsint := getTypeUnlocked("slice1", reflect.TypeOf(news))
99 sbool := getTypeUnlocked("", reflect.TypeOf(b)
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
all_test.go 488 testType(t, 1, TypeOf((int8)(0)), "int8")
489 testType(t, 2, TypeOf((*int8)(nil)).Elem(), "int8")
491 typ := TypeOf((*struct {
513 typ = TypeOf([32]int32{})
517 typ = TypeOf((map[string]*int32)(nil))
523 typ = TypeOf((chan<- string)(nil))
528 typ = TypeOf(struct {
560 t.Error("v2.Interface() did not return float64, got ", TypeOf(i3))
871 if typ := TypeOf(nil); typ != nil {
879 typ := TypeOf(test.a
    [all...]
example_test.go 64 st := reflect.TypeOf(s)
80 st := reflect.TypeOf(s)
104 writerType := reflect.TypeOf((*io.Writer)(nil)).Elem()
106 fileType := reflect.TypeOf((*os.File)(nil))
117 Type: reflect.TypeOf(float64(0)),
122 Type: reflect.TypeOf(int(0)),
  /prebuilts/go/linux-x86/src/reflect/
all_test.go 488 testType(t, 1, TypeOf((int8)(0)), "int8")
489 testType(t, 2, TypeOf((*int8)(nil)).Elem(), "int8")
491 typ := TypeOf((*struct {
513 typ = TypeOf([32]int32{})
517 typ = TypeOf((map[string]*int32)(nil))
523 typ = TypeOf((chan<- string)(nil))
528 typ = TypeOf(struct {
560 t.Error("v2.Interface() did not return float64, got ", TypeOf(i3))
871 if typ := TypeOf(nil); typ != nil {
879 typ := TypeOf(test.a
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/x509/
pkcs8_test.go 52 keyType: reflect.TypeOf(&rsa.PrivateKey{}),
57 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
63 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
69 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
75 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
91 if reflect.TypeOf(privKey) != test.keyType {
  /prebuilts/go/linux-x86/src/crypto/x509/
pkcs8_test.go 52 keyType: reflect.TypeOf(&rsa.PrivateKey{}),
57 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
63 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
69 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
75 keyType: reflect.TypeOf(&ecdsa.PrivateKey{}),
91 if reflect.TypeOf(privKey) != test.keyType {

Completed in 5069 milliseconds

1 2 3 4 5 6 7 8 9