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

36 uses

	google.golang.org/protobuf/internal/filedesc (current package)
		desc.go#L452: 		L1 ExtensionL1
		desc.go#L479: func (xd *Extension) Number() protoreflect.FieldNumber      { return xd.L1.Number }
		desc.go#L480: func (xd *Extension) Cardinality() protoreflect.Cardinality { return xd.L1.Cardinality }
		desc.go#L481: func (xd *Extension) Kind() protoreflect.Kind               { return xd.L1.Kind }
		desc.go#L485: func (xd *Extension) HasPresence() bool                     { return xd.L1.Cardinality != protoreflect.Repeated }
		desc.go#L487: 	return (xd.L0.ParentFile.L1.Syntax == protoreflect.Proto2 && xd.L1.Cardinality == protoreflect.Optional) || xd.lazyInit().IsProto3Optional
		desc.go#L490: 	if xd.L1.Cardinality != protoreflect.Repeated {
		desc.go#L493: 	switch xd.L1.Kind {
		desc.go#L497: 	return xd.L1.EditionFeatures.IsPacked
		desc.go#L501: func (xd *Extension) IsLazy() bool                           { return xd.L1.IsLazy }
		desc.go#L512: 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#L462: 	xd.L1.EditionFeatures = featuresFromParentDesc(pd)
		desc_init.go#L473: 				xd.L1.Number = protoreflect.FieldNumber(v)
		desc_init.go#L475: 				xd.L1.Cardinality = protoreflect.Cardinality(v)
		desc_init.go#L477: 				xd.L1.Kind = protoreflect.Kind(v)
		desc_init.go#L486: 				xd.L1.Extendee = PlaceholderMessage(makeFullName(sb, v))
		desc_init.go#L496: 	if xd.L1.Kind == protoreflect.MessageKind && xd.L1.EditionFeatures.IsDelimitedEncoded {
		desc_init.go#L497: 		xd.L1.Kind = protoreflect.GroupKind
		desc_init.go#L511: 				xd.L1.EditionFeatures.IsPacked = protowire.DecodeBool(v)
		desc_init.go#L513: 				xd.L1.IsLazy = protowire.DecodeBool(v)
		desc_init.go#L520: 				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#L577: 		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 {