Home | History | Annotate | Download | only in asn1

Lines Matching refs:tagNumber

322                 if (annotation.tagNumber() != -1) {
331 int tagNumber;
332 if (annotation.tagNumber() != -1) {
333 tagNumber = annotation.tagNumber();
335 tagNumber = -1;
337 tagNumber = BerEncoding.getTagNumber(mDataType);
339 mDerTagNumber = tagNumber;
343 && (annotation.tagNumber() == -1)) {
393 int tagClass, boolean constructed, int tagNumber, byte[]... contents) {
394 if (tagNumber >= 0x1f) {
395 throw new IllegalArgumentException("High tag numbers not supported: " + tagNumber);
399 (byte) ((tagClass << 6) | (constructed ? 1 << 5 : 0) | tagNumber);