Home
last modified time | relevance | path

Searched refs:isConstructed (Results 1 – 25 of 137) sorted by relevance

123456

/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
DASN1ApplicationSpecific.java16 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()
DDLApplicationSpecific.java15 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()
DDERApplicationSpecific.java15 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()
DBERApplicationSpecific.java15 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()
DASN1StreamParser.java142 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()
DDLTaggedObject.java28 boolean isConstructed() in isConstructed() method in DLTaggedObject
30 return explicit || obj.toASN1Primitive().toDLObject().isConstructed(); in isConstructed()
56 if (explicit || primitive.isConstructed()) in encode()
DDERTaggedObject.java33 boolean isConstructed() in isConstructed() method in DERTaggedObject
35 return explicit || obj.toASN1Primitive().toDERObject().isConstructed(); in isConstructed()
62 if (explicit || primitive.isConstructed()) in encode()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1ApplicationSpecific.java14 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()
DBERApplicationSpecific.java13 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()
DDERApplicationSpecific.java13 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()
DDLApplicationSpecific.java13 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()
DASN1StreamParser.java140 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()
DDLTaggedObject.java26 boolean isConstructed() in isConstructed() method in DLTaggedObject
28 return explicit || obj.toASN1Primitive().toDLObject().isConstructed(); in isConstructed()
54 if (explicit || primitive.isConstructed()) in encode()
DDERTaggedObject.java31 boolean isConstructed() in isConstructed() method in DERTaggedObject
33 return explicit || obj.toASN1Primitive().toDERObject().isConstructed(); in isConstructed()
60 if (explicit || primitive.isConstructed()) in encode()
DASN1InputStream.java140 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/
DASN1ApplicationSpecific.java16 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()
DDERApplicationSpecific.java15 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()
DDLApplicationSpecific.java15 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()
DBERApplicationSpecific.java15 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()
DASN1StreamParser.java142 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()
DDLTaggedObject.java28 boolean isConstructed() in isConstructed() method in DLTaggedObject
30 return explicit || obj.toASN1Primitive().toDLObject().isConstructed(); in isConstructed()
56 if (explicit || primitive.isConstructed()) in encode()
DDERTaggedObject.java33 boolean isConstructed() in isConstructed() method in DERTaggedObject
35 return explicit || obj.toASN1Primitive().toDERObject().isConstructed(); in isConstructed()
62 if (explicit || primitive.isConstructed()) in encode()
DASN1InputStream.java142 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-project/llvm/unittests/Support/
DManagedStatic.cpp68 assert(Ms1.isConstructed()); in ~Nest()
75 EXPECT_FALSE(Ms1.isConstructed()); in TEST()
76 EXPECT_FALSE(Ms2.isConstructed()); in TEST()
79 EXPECT_TRUE(Ms1.isConstructed()); in TEST()
80 EXPECT_TRUE(Ms2.isConstructed()); in TEST()
/external/llvm-project/pstl/test/std/algorithms/alg.sorting/
Dsort.pass.cpp56 isConstructed() const in isConstructed() function in ParanoidKey
75 EXPECT_TRUE(isConstructed(), "double destruction"); in ~ParanoidKey()
83 EXPECT_TRUE(isConstructed(), "destination for copy-assignment is dead"); in operator =()
91 EXPECT_TRUE(k.isConstructed(), "source for move-construction is dead"); in ParanoidKey()
101 EXPECT_TRUE(k.isConstructed(), "source for move-assignment is dead"); in operator =()
102 EXPECT_TRUE(isConstructed(), "destination for move-assignment is dead"); in operator =()

123456