Home
last modified time | relevance | path

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

/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DDERUnknownTag.java13 private boolean isConstructed; field in DERUnknownTag
29 boolean isConstructed, in DERUnknownTag() argument
33 this.isConstructed = isConstructed; in DERUnknownTag()
38 public boolean isConstructed() in isConstructed() method in DERUnknownTag
40 return isConstructed; in isConstructed()
57 out.writeEncoded(isConstructed ? DERTags.CONSTRUCTED : 0, tag, data); in encode()
70 return isConstructed == other.isConstructed in equals()
77 return (isConstructed ? ~0 : 0) ^ tag ^ Arrays.hashCode(data); in hashCode()
DDERApplicationSpecific.java14 private final boolean isConstructed; field in DERApplicationSpecific
19 boolean isConstructed, in DERApplicationSpecific() argument
23 this.isConstructed = isConstructed; in DERApplicationSpecific()
51 this.isConstructed = explicit; in DERApplicationSpecific()
70 this.isConstructed = true; in DERApplicationSpecific()
99 public boolean isConstructed() in isConstructed() method in DERApplicationSpecific
101 return isConstructed; in isConstructed()
158 if (isConstructed) in encode()
176 return isConstructed == other.isConstructed in asn1Equals()
183 return (isConstructed ? 1 : 0) ^ tag ^ Arrays.hashCode(octets); in hashCode()
DASN1StreamParser.java61 boolean isConstructed = (tag & DERTags.CONSTRUCTED) != 0; in readObject()
70 if (!isConstructed) in readObject()
113 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray()); in readObject()
121 if (isConstructed) in readObject()
DASN1InputStream.java112 boolean isConstructed = (tag & CONSTRUCTED) != 0; in buildObject()
118 return new DERApplicationSpecific(isConstructed, tagNo, defIn.toByteArray()); in buildObject()
126 if (isConstructed) in buildObject()
196 boolean isConstructed = (tag & CONSTRUCTED) != 0; in readObject()
205 if (!isConstructed) in readObject()
DBERTaggedObjectParser.java26 public boolean isConstructed() in isConstructed() method in BERTaggedObjectParser
68 if (_indefiniteLength || this.isConstructed()) in getObjectParser()
104 if (this.isConstructed()) in getDERObject()
/external/webkit/WebCore/rendering/
DInlineBox.h148 bool isConstructed() { return m_constructed; } in isConstructed() function
DInlineFlowBox.cpp213 if (!lineBoxList->firstLineBox()->isConstructed() && !renderer()->isInlineContinuation()) { in determineSpacingForFlowBoxes()
227 if (!lineBoxList->lastLineBox()->isConstructed()) { in determineSpacingForFlowBoxes()
234 if ((!prevLineBox() || prevLineBox()->isConstructed()) && in determineSpacingForFlowBoxes()
DRenderBlockLineLayout.cpp231 if (!parentBox || parentBox->isConstructed() || parentBox->nextOnLine()) { in createLineBoxes()
309 ASSERT(lastLineBox() && !lastLineBox()->isConstructed()); in constructLine()
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/util/
DASN1Dump.java363 if (app.isConstructed()) in outputApplicationSpecific()