OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isConstructed
(Results
1 - 25
of
68
) sorted by null
1
2
3
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ApplicationSpecific.java
13
protected final boolean
isConstructed
;
18
boolean
isConstructed
,
22
this.
isConstructed
=
isConstructed
;
84
public boolean
isConstructed
()
86
return
isConstructed
;
159
if (
isConstructed
)
177
return
isConstructed
== other.
isConstructed
184
return (
isConstructed
? 1 : 0) ^ tag ^ Arrays.hashCode(octets)
[
all
...]
BERApplicationSpecific.java
13
boolean
isConstructed
,
17
super(
isConstructed
, tag, octets);
47
super(constructed || object.toASN1Primitive().
isConstructed
(), tag, getEncoding(constructed, object));
103
if (
isConstructed
)
DERApplicationSpecific.java
13
boolean
isConstructed
,
17
super(
isConstructed
, tag, octets);
61
super(constructed || object.toASN1Primitive().
isConstructed
(), tag, getEncoding(constructed, object));
117
if (
isConstructed
)
DERNull.java
24
boolean
isConstructed
()
DERTaggedObject.java
33
boolean
isConstructed
()
45
return primitive.
isConstructed
();
100
if (primitive.
isConstructed
())
DLTaggedObject.java
28
boolean
isConstructed
()
40
return primitive.
isConstructed
();
94
if (primitive.
isConstructed
())
ASN1Primitive.java
82
abstract boolean
isConstructed
();
BERTaggedObjectParser.java
30
public boolean
isConstructed
()
DEROctetString.java
34
boolean
isConstructed
()
ASN1StreamParser.java
140
boolean
isConstructed
= (tag & BERTags.CONSTRUCTED) != 0;
149
if (!
isConstructed
)
175
return new DERApplicationSpecific(
isConstructed
, tagNo, defIn.toByteArray());
180
return new BERTaggedObjectParser(
isConstructed
, tagNo, new ASN1StreamParser(defIn));
183
if (
isConstructed
)
BERTaggedObject.java
48
boolean
isConstructed
()
60
return primitive.
isConstructed
();
ASN1InputStream.java
140
boolean
isConstructed
= (tag & CONSTRUCTED) != 0;
146
return new DERApplicationSpecific(
isConstructed
, tagNo, defIn.toByteArray());
151
return new ASN1StreamParser(defIn).readTaggedObject(
isConstructed
, tagNo);
154
if (
isConstructed
)
232
boolean
isConstructed
= (tag & CONSTRUCTED) != 0;
241
if (!
isConstructed
)
DERGeneralString.java
114
boolean
isConstructed
()
DERGraphicString.java
85
boolean
isConstructed
()
DERT61String.java
110
boolean
isConstructed
()
DERUTF8String.java
121
boolean
isConstructed
()
DERVideotexString.java
85
boolean
isConstructed
()
DERVisibleString.java
111
boolean
isConstructed
()
/external/llvm/lib/Support/
PluginLoader.cpp
39
return Plugins.
isConstructed
() ? Plugins->size() : 0;
44
assert(Plugins.
isConstructed
() && num < Plugins->size() &&
/libcore/ojluni/src/main/java/sun/security/x509/
GeneralName.java
93
if (encName.isContextSpecific() && encName.
isConstructed
()) {
102
if (encName.isContextSpecific() && !encName.
isConstructed
()) {
111
if (encName.isContextSpecific() && !encName.
isConstructed
()) {
120
if (encName.isContextSpecific() && !encName.
isConstructed
()) {
130
if (encName.isContextSpecific() && !encName.
isConstructed
()) {
139
if (encName.isContextSpecific() && !encName.
isConstructed
()) {
148
if (encName.isContextSpecific() && encName.
isConstructed
()) {
156
if (encName.isContextSpecific() && encName.
isConstructed
()) {
DistributionPoint.java
201
if (opt.isContextSpecific(TAG_DIST_PT) && opt.
isConstructed
()) {
208
&& distPnt.
isConstructed
()) {
212
&& distPnt.
isConstructed
()) {
220
&& !opt.
isConstructed
()) {
228
&& opt.
isConstructed
()) {
IssuingDistributionPointExtension.java
194
opt.
isConstructed
()) {
198
!opt.
isConstructed
()) {
202
!opt.
isConstructed
()) {
206
!opt.
isConstructed
()) {
209
!opt.
isConstructed
()) {
213
!opt.
isConstructed
()) {
DistributionPointName.java
133
encoding.
isConstructed
()) {
139
encoding.
isConstructed
()) {
EDIPartyName.java
93
!opt.
isConstructed
()) {
101
!opt.
isConstructed
()) {
GeneralSubtree.java
86
if (opt.isContextSpecific(TAG_MIN) && !opt.
isConstructed
()) {
90
} else if (opt.isContextSpecific(TAG_MAX) && !opt.
isConstructed
()) {
Completed in 202 milliseconds
1
2
3