type internal/abi.Name

27 uses

	internal/abi (current package)
		type.go#L444: 	PkgPath Name      // import path
		type.go#L575: 	Name   Name    // name is always non-empty
		type.go#L586: 	PkgPath Name
		type.go#L616: type Name struct {
		type.go#L622: func (n Name) DataChecked(off int, whySafe string) *byte {
		type.go#L628: func (n Name) Data(off int) *byte {
		type.go#L633: func (n Name) IsExported() bool {
		type.go#L638: func (n Name) HasTag() bool {
		type.go#L643: func (n Name) IsEmbedded() bool {
		type.go#L649: func (n Name) ReadVarint(off int) (int, int) {
		type.go#L661: func (n Name) IsBlank() bool {
		type.go#L685: func (n Name) Name() string {
		type.go#L694: func (n Name) Tag() string {
		type.go#L703: func NewName(n, tag string, exported, embedded bool) Name {
		type.go#L738: 	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#L367: func (t *interfaceType) nameOff(off aNameOff) abi.Name {
		type.go#L371: func nameOffFor(t *abi.Type, off aNameOff) abi.Name {
		type.go#L414: func pkgPath(n abi.Name) string {
		type.go#L428: 	pkgPathName := abi.Name{Bytes: (*byte)(resolveTypeOff(unsafe.Pointer(n.Bytes), nameOff))}
		type.go#L432: func newName(n, tag string, exported, embedded bool) abi.Name {
		type.go#L540: func resolveReflectName(n abi.Name) aNameOff {
		type.go#L557: func (t *rtype) nameOff(off aNameOff) abi.Name {
		type.go#L558: 	return abi.Name{Bytes: (*byte)(resolveNameOff(unsafe.Pointer(t), int32(off)))}

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