OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isConstructed
(Results
1 - 12
of
12
) 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
...]
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
...]
ASN1StreamParser.java
135
boolean
isConstructed
= (tag & DERTags.CONSTRUCTED) != 0;
144
if (!
isConstructed
)
170
return new DERApplicationSpecific(
isConstructed
, tagNo, defIn.toByteArray());
175
return new BERTaggedObjectParser(
isConstructed
, tagNo, new ASN1StreamParser(defIn));
178
if (
isConstructed
)
BERTaggedObjectParser.java
34
public boolean
isConstructed
()
ASN1InputStream.java
126
boolean
isConstructed
= (tag & CONSTRUCTED) != 0;
132
return new DERApplicationSpecific(
isConstructed
, tagNo, defIn.toByteArray());
137
return new ASN1StreamParser(defIn).readTaggedObject(
isConstructed
, tagNo);
140
if (
isConstructed
)
210
boolean
isConstructed
= (tag & CONSTRUCTED) != 0;
219
if (!
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
48
///
isConstructed
- Return true if this object has not been created yet.
49
bool
isConstructed
() const { return Ptr != 0; }
/external/webkit/Source/WebCore/rendering/
InlineBox.h
182
bool
isConstructed
() { return m_constructed; }
InlineFlowBox.cpp
303
if (!lineBoxList->firstLineBox()->
isConstructed
() && !renderer()->isInlineElementContinuation()) {
310
if (!lineBoxList->lastLineBox()->
isConstructed
()) {
324
if ((!prevLineBox() || prevLineBox()->
isConstructed
())
[
all
...]
RenderBlockLineLayout.cpp
208
if (parentBox->
isConstructed
() || parentBox->nextOnLine())
346
ASSERT(lastLineBox() && !lastLineBox()->
isConstructed
());
[
all
...]
/external/llvm/lib/VMCore/
Attributes.cpp
143
if (!AttributesLists.
isConstructed
())
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/util/
ASN1Dump.java
323
if (app.
isConstructed
())
Completed in 188 milliseconds