Searched refs:tagNumber (Results 1 - 9 of 9) sorted by relevance

/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DASN1Constructured.java34 public ASN1Constructured(int tagNumber) { argument
35 super(CLASS_UNIVERSAL, tagNumber);
38 public ASN1Constructured(int tagClass, int tagNumber) { argument
39 super(tagClass, tagNumber);
H A DASN1Primitive.java34 public ASN1Primitive(int tagNumber) { argument
35 super(tagNumber);
H A DASN1ValueCollection.java47 * @param tagNumber - ASN.1 tag number
50 public ASN1ValueCollection(int tagNumber, ASN1Type type) { argument
51 super(tagNumber);
H A DASN1Type.java52 * @param tagNumber - ASN.1 tag number
53 * @throws IllegalArgumentException - if tagNumber is invalid
55 public ASN1Type(int tagNumber) { argument
56 this(CLASS_UNIVERSAL, tagNumber);
65 * @param tagNumber - ASN.1 tag number.
66 * @throws IllegalArgumentException - if tagClass or tagNumber is invalid
68 public ASN1Type(int tagClass, int tagNumber) { argument
70 if (tagNumber < 0) {
80 if (tagNumber < 31) {
82 this.id = tagClass + tagNumber;
[all...]
H A DASN1TypeCollection.java45 * @param tagNumber - ASN.1 tag number
47 * @throws IllegalArgumentException - if tagNumber is invalid
49 public ASN1TypeCollection(int tagNumber, ASN1Type[] type) { argument
50 super(tagNumber);
H A DASN1Explicit.java47 * @param tagNumber - ASN.1 tag number
49 * @throws IllegalArgumentException - if tagNumber is invalid
51 public ASN1Explicit(int tagNumber, ASN1Type type) { argument
52 this(CLASS_CONTEXTSPECIFIC, tagNumber, type);
59 * @param tagNumber - ASN.1 tag number
61 * @throws IllegalArgumentException - if tagClass or tagNumber is invalid
63 public ASN1Explicit(int tagClass, int tagNumber, ASN1Type type) { argument
64 super(tagClass, tagNumber);
H A DASN1Time.java42 * @param tagNumber
44 public ASN1Time(int tagNumber) { argument
45 super(tagNumber);
H A DASN1Implicit.java59 * @param tagNumber - ASN.1 tag number
61 * @throws IllegalArgumentException - if tagNumber or type is invalid
63 public ASN1Implicit(int tagNumber, ASN1Type type) { argument
64 this(CLASS_CONTEXTSPECIFIC, tagNumber, type);
71 * @param tagNumber - ASN.1 tag number
73 * @throws IllegalArgumentException - if tagNumber, tagClass or type is invalid
75 public ASN1Implicit(int tagClass, int tagNumber, ASN1Type type) { argument
76 super(tagClass, tagNumber);
H A DASN1StringType.java82 public ASN1StringType(int tagNumber) { argument
83 super(tagNumber);

Completed in 60 milliseconds