OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TAGGED
(Results
1 - 6
of
6
) sorted by null
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERTaggedObject.java
16
* @param obj the
tagged
object.
26
* @param explicit true if an explicitly
tagged
object.
28
* @param obj the
tagged
object.
39
* create an implicitly
tagged
object that contains a zero
64
out.writeEncoded(CONSTRUCTED |
TAGGED
| tagNo, bytes);
73
bytes[0] = (byte)(CONSTRUCTED |
TAGGED
| tagNo);
77
bytes[0] = (byte)(
TAGGED
| tagNo);
85
out.writeEncoded(CONSTRUCTED |
TAGGED
| tagNo, new byte[0]);
DERTags.java
35
public static final int
TAGGED
= 0x80;
BERTaggedObject.java
16
* @param obj the
tagged
object.
26
* @param explicit true if an explicitly
tagged
object.
28
* @param obj the
tagged
object.
39
* create an implicitly
tagged
object that contains a zero
54
out.write(CONSTRUCTED |
TAGGED
| tagNo);
ASN1InputStream.java
243
// with
tagged
object tag number is bottom 5 bits
246
if ((tag &
TAGGED
) != 0)
275
// explicitly
tagged
(probably!) - if it isn't we'd have to
382
if ((tag &
TAGGED
) != 0)
431
// with
tagged
object tag number is bottom 5 bits
433
if ((tag &
TAGGED
) != 0)
446
// either constructed or explicitly
tagged
458
// explicitly
tagged
(probably!) - if it isn't we'd have to
BERInputStream.java
135
// with
tagged
object tag number is bottom 5 bits
137
if ((tag &
TAGGED
) != 0)
155
// either constructed or explicitly
tagged
167
// explicitly
tagged
(probably!) - if it isn't we'd have to
DERInputStream.java
187
// with
tagged
object tag number is bottom 5 bits
189
if ((tag &
TAGGED
) != 0)
224
// explicitly
tagged
(probably!) - if it isn't we'd have to
Completed in 67 milliseconds