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

/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
H A DASN1Time.java39 public ASN1Time(int tagNumber) { argument
40 super(tagNumber);
H A DASN1ValueCollection.java44 public ASN1ValueCollection(int tagNumber, ASN1Type type) { argument
45 super(tagNumber);
H A DASN1Constructed.java33 protected ASN1Constructed(int tagNumber) { argument
34 super(CLASS_UNIVERSAL, tagNumber);
37 protected ASN1Constructed(int tagClass, int tagNumber) { argument
38 super(tagClass, tagNumber);
H A DASN1Explicit.java41 * @param tagNumber - ASN.1 tag number
43 * @throws IllegalArgumentException - if tagNumber is invalid
45 public ASN1Explicit(int tagNumber, ASN1Type type) { argument
46 this(CLASS_CONTEXTSPECIFIC, tagNumber, type);
53 * @param tagNumber - ASN.1 tag number
55 * @throws IllegalArgumentException - if tagClass or tagNumber is invalid
57 public ASN1Explicit(int tagClass, int tagNumber, ASN1Type type) { argument
58 super(tagClass, tagNumber);
H A DASN1Primitive.java33 public ASN1Primitive(int tagNumber) { argument
34 super(tagNumber);
H A DASN1TypeCollection.java42 * @param tagNumber ASN.1 tag number
44 * @throws IllegalArgumentException if tagNumber is invalid
46 protected ASN1TypeCollection(int tagNumber, ASN1Type[] type) { argument
47 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 super(CLASS_CONTEXTSPECIFIC, tagNumber);
H A DASN1StringType.java36 public ASN1StringUTF8Type(int tagNumber) { argument
37 super(tagNumber);
69 public ASN1StringType(int tagNumber) { argument
70 super(tagNumber);
H A DASN1Type.java45 * @param tagNumber - ASN.1 tag number
46 * @throws IllegalArgumentException - if tagNumber is invalid
48 public ASN1Type(int tagNumber) { argument
49 this(CLASS_UNIVERSAL, tagNumber);
57 * @param tagNumber - ASN.1 tag number.
58 * @throws IllegalArgumentException - if tagClass or tagNumber is invalid
60 public ASN1Type(int tagClass, int tagNumber) { argument
61 if (tagNumber < 0) {
62 throw new IllegalArgumentException("tagNumber < 0");
71 if (tagNumber < 3
[all...]

Completed in 77 milliseconds