OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TAGGED
(Results
1 - 7
of
7
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERTaggedObject.java
17
* @param obj the
tagged
object.
27
* @param explicit true if an explicitly
tagged
object.
29
* @param obj the
tagged
object.
40
* create an implicitly
tagged
object that contains a zero
59
out.writeEncoded(CONSTRUCTED |
TAGGED
, tagNo, bytes);
69
flags = CONSTRUCTED |
TAGGED
;
73
flags =
TAGGED
;
82
out.writeEncoded(CONSTRUCTED |
TAGGED
, tagNo, ZERO_BYTES);
DERTags.java
35
public static final int
TAGGED
= 0x80;
ASN1StreamParser.java
84
if ((tag & DERTags.
TAGGED
) != 0)
116
if ((tag & DERTags.
TAGGED
) != 0)
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.writeTag(CONSTRUCTED |
TAGGED
, tagNo);
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
ASN1InputStream.java
121
if ((tag &
TAGGED
) != 0)
218
if ((tag &
TAGGED
) != 0)
252
// with
tagged
object tag number is bottom 5 bits, or stored at the start of the content
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 78 milliseconds