reflect.Type.Field (method)

46 uses

	reflect (current package)
		map_swiss.go#L78: 	mt.ElemOff = slot.Field(1).Offset
		type.go#L166: 	Field(i int) StructField
		type.go#L1161: 		f = f.Type.Field(x)
		type.go#L2151: 			field := t.Field(0)
		type.go#L2158: 				field := t.Field(i)
		type.go#L2172: 	field := t.Field(i)
		type.go#L2174: 		return field.Offset+field.Type.Size() != t.Field(i+1).Offset
		value.go#L1633: 			if !v.Field(i).IsZero() && v.Type().Field(i).Name != "_" {
		visiblefields.go#L67: 		f := t.Field(i)

	encoding/asn1
		asn1.go#L914: 			if !structType.Field(i).IsExported() {
		asn1.go#L921: 			structType.Field(0).Type == rawContentsType {
		asn1.go#L928: 			field := structType.Field(i)
		marshal.go#L488: 			if !t.Field(i).IsExported() {
		marshal.go#L502: 		if t.Field(0).Type == rawContentsType {
		marshal.go#L520: 			return makeField(v.Field(startingField), parseFieldParameters(t.Field(startingField).Tag.Get("asn1")))
		marshal.go#L524: 				m[i], err = makeField(v.Field(i+startingField), parseFieldParameters(t.Field(i+startingField).Tag.Get("asn1")))

	encoding/binary
		binary.go#L743: 			s := sizeof(t.Field(i).Type)
		binary.go#L862: 			if v := v.Field(i); v.CanSet() || t.Field(i).Name != "_" {
		binary.go#L927: 			if v := v.Field(i); v.CanSet() || t.Field(i).Name != "_" {

	encoding/json
		decode.go#L727: 							subv.Type().Field(ind).Name,
		encode.go#L949: 		t = t.Field(i).Type
		encode.go#L1118: 				sf := f.typ.Field(i)

	fmt
		print.go#L848: 				if name := f.Type().Field(i).Name; name != "" {

	github.com/google/go-cmp/cmp
		compare.go#L382: 		step.typ = t.Field(i).Type
		compare.go#L385: 		step.name = t.Field(i).Name
		compare.go#L412: 			step.field = t.Field(i)
		options.go#L252: 				pkgPath = t.Field(i).PkgPath
		report_reflect.go#L201: 			sf := t.Field(i)

	github.com/google/go-cmp/cmp/internal/value
		name.go#L100: 			sf := t.Field(i)

	go/ast
		print.go#L221: 			if name := t.Field(i).Name; IsExported(name) {

	google.golang.org/protobuf/internal/impl
		codec_field.go#L47: 		cf.ft = ot.Field(0).Type
		legacy_message.go#L130: 				f := t.Elem().Field(i)
		legacy_message.go#L193: 		f := t.Elem().Field(i)
		legacy_message.go#L242: 		f := t.Elem().Field(i)
		legacy_message.go#L260: 					f := t.Elem().Field(0)
		message.go#L160: 		switch f := t.Field(i); f.Name {
		message.go#L213: 		f := tf.Field(0)
		message_opaque.go#L33: 		pgt := t.Field(0).Tag.Get("protogen")
		message_reflect.go#L196: 				ft = si.oneofWrappersByNumber[fd.Number()].Field(0).Type
		message_reflect_field.go#L72: 	conv := NewConverter(ot.Field(0).Type, fd)
		validate.go#L121: 				vi.mi = getMessageInfo(ot.Field(0).Type)
		validate.go#L126: 				vi.mi = getMessageInfo(ot.Field(0).Type)

	internal/buildcfg
		exp.go#L102: 			names[strings.ToLower(rt.Field(i).Name)] = field.SetBool
		exp.go#L173: 		name := strings.ToLower(rt.Field(i).Name)

	net/http
		h2_error.go#L26: 		sf := srcType.Field(i)
		h2_error.go#L27: 		df := dstType.Field(i)