HomeSort by relevance Sort by last modified time
    Searched defs:isConstructed (Results 1 - 4 of 4) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERUnknownTag.java 13 private boolean isConstructed;
29 boolean isConstructed,
33 this.isConstructed = isConstructed;
38 public boolean isConstructed()
40 return isConstructed;
57 out.writeEncoded(isConstructed ? DERTags.CONSTRUCTED : 0, tag, data);
70 return isConstructed == other.isConstructed
77 return (isConstructed ? ~0 : 0) ^ tag ^ Arrays.hashCode(data)
    [all...]
BERTaggedObjectParser.java 26 public boolean isConstructed()
68 if (_indefiniteLength || this.isConstructed())
104 if (this.isConstructed())
DERApplicationSpecific.java 14 private final boolean isConstructed;
19 boolean isConstructed,
23 this.isConstructed = isConstructed;
51 this.isConstructed = explicit;
70 this.isConstructed = true;
99 public boolean isConstructed()
101 return isConstructed;
158 if (isConstructed)
176 return isConstructed == other.isConstructe
    [all...]
  /external/webkit/WebCore/rendering/
InlineBox.h 148 bool isConstructed() { return m_constructed; }

Completed in 438 milliseconds