type internal/abi.Name

27 uses

	internal/abi (current package)
		type.go#L455: 	PkgPath Name      // import path
		type.go#L555: 	Name   Name    // name is always non-empty
		type.go#L566: 	PkgPath Name
		type.go#L596: type Name struct {
		type.go#L602: func (n Name) DataChecked(off int, whySafe string) *byte {
		type.go#L608: func (n Name) Data(off int) *byte {
		type.go#L613: func (n Name) IsExported() bool {
		type.go#L618: func (n Name) HasTag() bool {
		type.go#L623: func (n Name) IsEmbedded() bool {
		type.go#L629: func (n Name) ReadVarint(off int) (int, int) {
		type.go#L641: func (n Name) IsBlank() bool {
		type.go#L665: func (n Name) Name() string {
		type.go#L674: func (n Name) Tag() string {
		type.go#L683: func NewName(n, tag string, exported, embedded bool) Name {
		type.go#L718: 	return Name{Bytes: &b[0]}

	internal/reflectlite
		type.go#L196: func pkgPath(n abi.Name) string {
		type.go#L233: func (t rtype) nameOff(off nameOff) abi.Name {
		type.go#L234: 	return abi.Name{Bytes: (*byte)(resolveNameOff(unsafe.Pointer(t.Type), int32(off)))}

	reflect
		type.go#L368: func (t *interfaceType) nameOff(off aNameOff) abi.Name {
		type.go#L372: func nameOffFor(t *abi.Type, off aNameOff) abi.Name {
		type.go#L410: func pkgPath(n abi.Name) string {
		type.go#L424: 	pkgPathName := abi.Name{Bytes: (*byte)(resolveTypeOff(unsafe.Pointer(n.Bytes), nameOff))}
		type.go#L428: func newName(n, tag string, exported, embedded bool) abi.Name {
		type.go#L536: func resolveReflectName(n abi.Name) aNameOff {
		type.go#L553: func (t *rtype) nameOff(off aNameOff) abi.Name {
		type.go#L554: 	return abi.Name{Bytes: (*byte)(resolveNameOff(unsafe.Pointer(t), int32(off)))}

	runtime
		type.go#L411: type name = abi.Name