/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/ |
D | ASN1ApplicationSpecific.java | 16 protected final boolean isConstructed; field in ASN1ApplicationSpecific 21 boolean isConstructed, in ASN1ApplicationSpecific() argument 25 this.isConstructed = isConstructed; in ASN1ApplicationSpecific() 87 public boolean isConstructed() in isConstructed() method in ASN1ApplicationSpecific 89 return isConstructed; in isConstructed() 162 if (isConstructed) in encode() 180 return isConstructed == other.isConstructed in asn1Equals() 187 return (isConstructed ? 1 : 0) ^ tag ^ Arrays.hashCode(octets); in hashCode() 228 if (isConstructed()) in toString()
|
D | BERApplicationSpecific.java | 15 boolean isConstructed, in BERApplicationSpecific() argument 19 super(isConstructed, tag, octets); in BERApplicationSpecific() 49 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in BERApplicationSpecific() 105 if (isConstructed) in encode()
|
D | DERApplicationSpecific.java | 15 boolean isConstructed, in DERApplicationSpecific() argument 19 super(isConstructed, tag, octets); in DERApplicationSpecific() 63 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in DERApplicationSpecific() 119 if (isConstructed) in encode()
|
D | DLApplicationSpecific.java | 15 boolean isConstructed, in DLApplicationSpecific() argument 19 super(isConstructed, tag, octets); in DLApplicationSpecific() 63 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in DLApplicationSpecific() 119 if (isConstructed) in encode()
|
D | ASN1StreamParser.java | 142 boolean isConstructed = (tag & BERTags.CONSTRUCTED) != 0; in readObject() 152 if (!isConstructed) in readObject() 178 return new DLApplicationSpecific(isConstructed, tagNo, defIn.toByteArray()); in readObject() 183 return new BERTaggedObjectParser(isConstructed, tagNo, new ASN1StreamParser(defIn)); in readObject() 186 if (isConstructed) in readObject()
|
D | DLTaggedObject.java | 28 boolean isConstructed() in isConstructed() method in DLTaggedObject 30 return explicit || obj.toASN1Primitive().toDLObject().isConstructed(); in isConstructed() 56 if (explicit || primitive.isConstructed()) in encode()
|
D | DERTaggedObject.java | 33 boolean isConstructed() in isConstructed() method in DERTaggedObject 35 return explicit || obj.toASN1Primitive().toDERObject().isConstructed(); in isConstructed() 62 if (explicit || primitive.isConstructed()) in encode()
|
D | ASN1InputStream.java | 144 boolean isConstructed = (tag & CONSTRUCTED) != 0; in buildObject() 150 return new DLApplicationSpecific(isConstructed, tagNo, defIn.toByteArray()); in buildObject() 155 return new ASN1StreamParser(defIn).readTaggedObject(isConstructed, tagNo); in buildObject() 158 if (isConstructed) in buildObject() 242 boolean isConstructed = (tag & CONSTRUCTED) != 0; in readObject() 251 if (!isConstructed) in readObject()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
D | ASN1ApplicationSpecific.java | 14 protected final boolean isConstructed; field in ASN1ApplicationSpecific 19 boolean isConstructed, in ASN1ApplicationSpecific() argument 23 this.isConstructed = isConstructed; in ASN1ApplicationSpecific() 85 public boolean isConstructed() in isConstructed() method in ASN1ApplicationSpecific 87 return isConstructed; in isConstructed() 160 if (isConstructed) in encode() 178 return isConstructed == other.isConstructed in asn1Equals() 185 return (isConstructed ? 1 : 0) ^ tag ^ Arrays.hashCode(octets); in hashCode() 226 if (isConstructed()) in toString()
|
D | BERApplicationSpecific.java | 13 boolean isConstructed, in BERApplicationSpecific() argument 17 super(isConstructed, tag, octets); in BERApplicationSpecific() 47 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in BERApplicationSpecific() 103 if (isConstructed) in encode()
|
D | DLApplicationSpecific.java | 13 boolean isConstructed, in DLApplicationSpecific() argument 17 super(isConstructed, tag, octets); in DLApplicationSpecific() 61 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in DLApplicationSpecific() 117 if (isConstructed) in encode()
|
D | DERApplicationSpecific.java | 13 boolean isConstructed, in DERApplicationSpecific() argument 17 super(isConstructed, tag, octets); in DERApplicationSpecific() 61 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in DERApplicationSpecific() 117 if (isConstructed) in encode()
|
D | ASN1StreamParser.java | 140 boolean isConstructed = (tag & BERTags.CONSTRUCTED) != 0; in readObject() 150 if (!isConstructed) in readObject() 176 return new DLApplicationSpecific(isConstructed, tagNo, defIn.toByteArray()); in readObject() 181 return new BERTaggedObjectParser(isConstructed, tagNo, new ASN1StreamParser(defIn)); in readObject() 184 if (isConstructed) in readObject()
|
D | DLTaggedObject.java | 26 boolean isConstructed() in isConstructed() method in DLTaggedObject 28 return explicit || obj.toASN1Primitive().toDLObject().isConstructed(); in isConstructed() 54 if (explicit || primitive.isConstructed()) in encode()
|
D | DERTaggedObject.java | 31 boolean isConstructed() in isConstructed() method in DERTaggedObject 33 return explicit || obj.toASN1Primitive().toDERObject().isConstructed(); in isConstructed() 60 if (explicit || primitive.isConstructed()) in encode()
|
D | ASN1InputStream.java | 140 boolean isConstructed = (tag & CONSTRUCTED) != 0; in buildObject() 146 return new DLApplicationSpecific(isConstructed, tagNo, defIn.toByteArray()); in buildObject() 151 return new ASN1StreamParser(defIn).readTaggedObject(isConstructed, tagNo); in buildObject() 154 if (isConstructed) in buildObject() 237 boolean isConstructed = (tag & CONSTRUCTED) != 0; in readObject() 246 if (!isConstructed) in readObject()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/ |
D | ASN1ApplicationSpecific.java | 16 protected final boolean isConstructed; field in ASN1ApplicationSpecific 21 boolean isConstructed, in ASN1ApplicationSpecific() argument 25 this.isConstructed = isConstructed; in ASN1ApplicationSpecific() 87 public boolean isConstructed() in isConstructed() method in ASN1ApplicationSpecific 89 return isConstructed; in isConstructed() 162 if (isConstructed) in encode() 180 return isConstructed == other.isConstructed in asn1Equals() 187 return (isConstructed ? 1 : 0) ^ tag ^ Arrays.hashCode(octets); in hashCode() 228 if (isConstructed()) in toString()
|
D | BERApplicationSpecific.java | 15 boolean isConstructed, in BERApplicationSpecific() argument 19 super(isConstructed, tag, octets); in BERApplicationSpecific() 49 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in BERApplicationSpecific() 105 if (isConstructed) in encode()
|
D | DERApplicationSpecific.java | 15 boolean isConstructed, in DERApplicationSpecific() argument 19 super(isConstructed, tag, octets); in DERApplicationSpecific() 63 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in DERApplicationSpecific() 119 if (isConstructed) in encode()
|
D | DLApplicationSpecific.java | 15 boolean isConstructed, in DLApplicationSpecific() argument 19 super(isConstructed, tag, octets); in DLApplicationSpecific() 63 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in DLApplicationSpecific() 119 if (isConstructed) in encode()
|
D | ASN1StreamParser.java | 142 boolean isConstructed = (tag & BERTags.CONSTRUCTED) != 0; in readObject() 152 if (!isConstructed) in readObject() 178 return new DLApplicationSpecific(isConstructed, tagNo, defIn.toByteArray()); in readObject() 183 return new BERTaggedObjectParser(isConstructed, tagNo, new ASN1StreamParser(defIn)); in readObject() 186 if (isConstructed) in readObject()
|
D | DLTaggedObject.java | 28 boolean isConstructed() in isConstructed() method in DLTaggedObject 30 return explicit || obj.toASN1Primitive().toDLObject().isConstructed(); in isConstructed() 56 if (explicit || primitive.isConstructed()) in encode()
|
D | DERTaggedObject.java | 33 boolean isConstructed() in isConstructed() method in DERTaggedObject 35 return explicit || obj.toASN1Primitive().toDERObject().isConstructed(); in isConstructed() 62 if (explicit || primitive.isConstructed()) in encode()
|
D | ASN1InputStream.java | 142 boolean isConstructed = (tag & CONSTRUCTED) != 0; in buildObject() 148 return new DLApplicationSpecific(isConstructed, tagNo, defIn.toByteArray()); in buildObject() 153 return new ASN1StreamParser(defIn).readTaggedObject(isConstructed, tagNo); in buildObject() 156 if (isConstructed) in buildObject() 239 boolean isConstructed = (tag & CONSTRUCTED) != 0; in readObject() 248 if (!isConstructed) in readObject()
|
/external/llvm/lib/Support/ |
D | PluginLoader.cpp | 39 return Plugins.isConstructed() ? Plugins->size() : 0; in getNumPlugins() 44 assert(Plugins.isConstructed() && num < Plugins->size() && in getPlugin()
|