google.golang.org/protobuf/internal/filedesc.Extension.L1 (field)

36 uses

	google.golang.org/protobuf/internal/filedesc (current package)
		desc.go#L433: 		L1 ExtensionL1
		desc.go#L460: func (xd *Extension) Number() protoreflect.FieldNumber      { return xd.L1.Number }
		desc.go#L461: func (xd *Extension) Cardinality() protoreflect.Cardinality { return xd.L1.Cardinality }
		desc.go#L462: func (xd *Extension) Kind() protoreflect.Kind               { return xd.L1.Kind }
		desc.go#L466: func (xd *Extension) HasPresence() bool                     { return xd.L1.Cardinality != protoreflect.Repeated }
		desc.go#L468: 	return (xd.L0.ParentFile.L1.Syntax == protoreflect.Proto2 && xd.L1.Cardinality == protoreflect.Optional) || xd.lazyInit().IsProto3Optional
		desc.go#L471: 	if xd.L1.Cardinality != protoreflect.Repeated {
		desc.go#L474: 	switch xd.L1.Kind {
		desc.go#L478: 	return xd.L1.EditionFeatures.IsPacked
		desc.go#L482: func (xd *Extension) IsLazy() bool                           { return xd.L1.IsLazy }
		desc.go#L493: func (xd *Extension) ContainingMessage() protoreflect.MessageDescriptor { return xd.L1.Extendee }
		desc_init.go#L36: 		xd.L1.Extendee = fd.resolveMessageDependency(xd.L1.Extendee, listExtTargets, int32(i))
		desc_init.go#L448: 	xd.L1.EditionFeatures = featuresFromParentDesc(pd)
		desc_init.go#L459: 				xd.L1.Number = protoreflect.FieldNumber(v)
		desc_init.go#L461: 				xd.L1.Cardinality = protoreflect.Cardinality(v)
		desc_init.go#L463: 				xd.L1.Kind = protoreflect.Kind(v)
		desc_init.go#L472: 				xd.L1.Extendee = PlaceholderMessage(makeFullName(sb, v))
		desc_init.go#L482: 	if xd.L1.Kind == protoreflect.MessageKind && xd.L1.EditionFeatures.IsDelimitedEncoded {
		desc_init.go#L483: 		xd.L1.Kind = protoreflect.GroupKind
		desc_init.go#L497: 				xd.L1.EditionFeatures.IsPacked = protowire.DecodeBool(v)
		desc_init.go#L499: 				xd.L1.IsLazy = protowire.DecodeBool(v)
		desc_init.go#L506: 				xd.L1.EditionFeatures = unmarshalFeatureSet(v, xd.L1.EditionFeatures)
		desc_lazy.go#L64: 		switch xd.L1.Kind {
		desc_lazy.go#L75: 			xd.L2.Default = unmarshalDefault(v.Bytes(), xd.L1.Kind, file, xd.L2.Enum)
		desc_lazy.go#L579: 		switch xd.L1.Kind {

	google.golang.org/protobuf/internal/filetype
		build.go#L217: 		switch fbOut.Extensions[i].L1.Kind {
		build.go#L227: 			goType = goTypeForPBKind[fbOut.Extensions[i].L1.Kind]

	google.golang.org/protobuf/internal/impl
		legacy_extension.go#L118: 	xd.L1.Number = protoreflect.FieldNumber(xi.Field)
		legacy_extension.go#L119: 	xd.L1.Cardinality = fd.L1.Cardinality
		legacy_extension.go#L120: 	xd.L1.Kind = fd.L1.Kind
		legacy_extension.go#L121: 	xd.L1.EditionFeatures = fd.L1.EditionFeatures
		legacy_extension.go#L123: 	xd.L1.Extendee = Export{}.MessageDescriptorOf(xi.ExtendedType)
		legacy_extension.go#L128: 	if messageset.IsMessageSet(xd.L1.Extendee) && md.FullName() == xd.L0.FullName {