Home | History | Annotate | Download | only in asn1

Lines Matching refs:SET

58 	// its single contents octet shall have all eight bits set to one."
289 // A Flag accepts any data and is set to true if present.
373 // isPrintable reports whether the given b is in the ASN.1 PrintableString set.
440 // into a byte slice. It returns the parsed data and the new offset. SET and
441 // SET OF (tag 17) are mapped to SEQUENCE and SEQUENCE OF (tag 16) since we
457 // If the bottom five bits are set, then the tag number is actually base 128
518 // parseSequenceOf is used for SEQUENCE OF and SET OF values. It tries to parse
616 v.Set(reflect.ValueOf(result))
664 v.Set(reflect.ValueOf(result))
734 if params.set {
773 v.Set(reflect.MakeSlice(v.Type(), len(newSlice), len(newSlice)))
782 v.Set(reflect.ValueOf(bs))
795 v.Set(reflect.ValueOf(time))
812 v.Set(reflect.ValueOf(parsedInt))
854 val.Field(0).Set(reflect.ValueOf(RawContent(bytes)))
875 val.Set(reflect.MakeSlice(sliceType, len(innerBytes), len(innerBytes)))
881 val.Set(newSlice)
914 // canHaveDefaultValue reports whether k is a Kind that we will set a default
969 // An ASN.1 SEQUENCE OF x or SET OF x can be written
972 // An ASN.1 SEQUENCE or SET can be written to a struct
982 // set causes a SET, rather than a SEQUENCE type to be expected
988 // If the type name of a slice element ends with "SET" then it's treated as if
989 // the "set" tag was set on it. This can be used with nested slices where a