Home
last modified time | relevance | path

Searched refs:VideotexString (Results 1 – 19 of 19) sorted by relevance

/external/rust/crates/der_derive/src/
Dasn1_type.rs30 VideotexString, enumerator
49 Asn1Type::VideotexString => quote!(::der::Tag::VideotexString), in tag()
64 Asn1Type::VideotexString => quote!(::der::asn1::VideotexStringRef::decode(reader)?), in decoder()
79 | Asn1Type::VideotexString in encoder()
95 Asn1Type::VideotexString => quote!(::der::asn1::VideotexStringRef), in type_path()
113 "VideotexString" => Ok(Self::VideotexString), in from_str()
130 Asn1Type::VideotexString => "VideotexString", in fmt()
/external/python/pyasn1/docs/source/pyasn1/type/char/
Dvideotexstring.rst2 .. _char.VideotexString:
4 .. |ASN.1| replace:: VideotexString
11 .. autoclass:: pyasn1.type.char.VideotexString(value=NoValue(), tagSet=TagSet(), subtypeSpec=Constr…
19 ….. automethod:: pyasn1.type.char.VideotexString.clone(value=NoValue(), tagSet=TagSet(), subtypeSpe…
20 ….. automethod:: pyasn1.type.char.VideotexString.subtype(value=NoValue(), implicitTag=Tag(), explic…
/external/rust/crates/der/src/
Dtag.rs95 VideotexString, enumerator
209 Tag::VideotexString => 0x15, in octet()
278 0x15 => Ok(Tag::VideotexString), in try_from()
355 Tag::VideotexString => f.write_str("VideotexString"), in fmt()
419 assert_eq!(Tag::VideotexString.class(), Class::Universal); in tag_class()
/external/rust/crates/der/src/asn1/
Dvideotex_string.rs86 const TAG: Tag = Tag::VideotexString;
107 AnyRef::from_tag_and_value(Tag::VideotexString, printable_string.inner.into()) in from()
/external/python/pyasn1/pyasn1/type/
Duseful.py169 typeId = char.VideotexString.getTypeId()
186 typeId = char.VideotexString.getTypeId()
Dchar.py212 class VideotexString(AbstractCharacterString): class
/external/python/pyasn1/pyasn1/codec/native/
Ddecoder.py84 char.VideotexString.tagSet: AbstractScalarDecoder(),
119 char.VideotexString.typeId: AbstractScalarDecoder(),
Dencoder.py128 char.VideotexString.tagSet: TextStringEncoder(),
164 char.VideotexString.typeId: OctetStringEncoder(),
/external/rust/crates/der-parser/src/ber/
Dber.rs71 VideotexString = 0x15,
160 VideotexString(&'a [u8]), enumerator
824 BerObjectContent::VideotexString(s) | in as_slice()
868 BerObjectContent::VideotexString(_) => BerTag::VideotexString, in tag()
Dprint.rs109 …BerObjectContent::VideotexString(v) => writeln!(f, "VideotexString({:?})", debug::HexSlice(v)… in fmt()
Dparser.rs409 map(take(len), BerObjectContent::VideotexString)(i) in ber_read_content_videotexstring()
622 BerTag::VideotexString => { in ber_read_element_content_as()
923 parse_ber_with_tag(i, BerTag::VideotexString) in parse_ber_videotexstring()
Dserialize.rs143 | BerObjectContent::VideotexString(s) in ber_encode_object_content()
/external/rust/crates/der-parser/src/der/
Dparser.rs250 parse_der_with_tag(i, DerTag::VideotexString) in parse_der_videotexstring()
530 | DerTag::VideotexString in der_read_element_content_as()
/external/python/pyasn1/pyasn1/codec/ber/
Dencoder.py728 char.VideotexString.tagSet: OctetStringEncoder(),
763 char.VideotexString.typeId: OctetStringEncoder(),
Ddecoder.py1164 protoComponent = char.VideotexString()
1221 char.VideotexString.tagSet: VideotexStringDecoder(),
/external/python/asn1crypto/docs/
Duniversal_types.md59 | `VideotexString` | `bytes` (`str`) | no unicode conversion …
442 | `VideotexString` | *?* | *None* | This has no set…
456 All string types other than `VideotexString` are created from unicode strings.
/external/rust/crates/der/
DCHANGELOG.md9 - Rudimentary implementation of `TeletexString` and `VideotexString` ([#691])
/external/rust/crates/der-parser/
DCHANGELOG.md121 - Implement the `VideotexString`, `ObjectDescriptor` `GraphicString`, and `VisibleString` string ty…
/external/python/asn1crypto/asn1crypto/
Dcore.py4844 class VideotexString(OctetString): class
5391 21: VideotexString,