HomeSort by relevance Sort by last modified time
    Searched refs:isConstructed (Results 1 - 25 of 39) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERApplicationSpecific.java 14 private final boolean isConstructed;
19 boolean isConstructed,
23 this.isConstructed = isConstructed;
53 this.isConstructed = explicit || (primitive instanceof ASN1Set || primitive instanceof ASN1Sequence);
72 this.isConstructed = true;
144 public boolean isConstructed()
146 return isConstructed;
209 if (isConstructed)
227 return isConstructed == other.isConstructe
    [all...]
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 62 abstract boolean isConstructed();
BERTaggedObjectParser.java 22 public boolean isConstructed()
DEROctetString.java 24 boolean isConstructed()
ASN1StreamParser.java 138 boolean isConstructed = (tag & BERTags.CONSTRUCTED) != 0;
147 if (!isConstructed)
173 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray());
178 return new BERTaggedObjectParser(isConstructed, tagNo, new ASN1StreamParser(defIn));
181 if (isConstructed)
BERTaggedObject.java 48 boolean isConstructed()
60 return primitive.isConstructed();
ASN1InputStream.java 134 boolean isConstructed = (tag & CONSTRUCTED) != 0;
140 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray());
145 return new ASN1StreamParser(defIn).readTaggedObject(isConstructed, tagNo);
148 if (isConstructed)
226 boolean isConstructed = (tag & CONSTRUCTED) != 0;
235 if (!isConstructed)
DERGeneralString.java 79 boolean isConstructed()
DERT61String.java 102 boolean isConstructed()
DERUTF8String.java 116 boolean isConstructed()
DERVisibleString.java 103 boolean isConstructed()
DERBMPString.java 128 boolean isConstructed()
DERBoolean.java 137 boolean isConstructed()
DEREnumerated.java 94 boolean isConstructed()
DERIA5String.java 127 boolean isConstructed()
DERInteger.java 102 boolean isConstructed()
DERNumericString.java 123 boolean isConstructed()
DERPrintableString.java 120 boolean isConstructed()
DERUniversalString.java 116 boolean isConstructed()
BEROctetString.java 118 boolean isConstructed()
  /external/llvm/lib/Support/
PluginLoader.cpp 39 return Plugins.isConstructed() ? Plugins->size() : 0;
44 assert(Plugins.isConstructed() && num < Plugins->size() &&
  /external/llvm/include/llvm/Support/
ManagedStatic.h 49 /// isConstructed - Return true if this object has not been created yet.
50 bool isConstructed() const { return Ptr != 0; }

Completed in 172 milliseconds

1 2