OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UNINIT
(Results
1 - 3
of
3
) sorted by null
/external/javassist/src/main/javassist/bytecode/
StackMap.java
113
public static final int
UNINIT
= 8;
190
else if (tag ==
UNINIT
) {
263
dest[pos] =
UNINIT
;
332
writer.writeVerifyTypeInfo(
UNINIT
, offset);
368
else if (varTag ==
UNINIT
)
369
writer.writeVerifyTypeInfo(
UNINIT
, varData);
433
else if (tag ==
UNINIT
) {
452
else if (tag ==
UNINIT
) {
532
if (tag == StackMap.OBJECT || tag == StackMap.
UNINIT
)
StackMapTable.java
136
public static final int
UNINIT
= 8;
244
if (tag == OBJECT || tag ==
UNINIT
) {
263
* if the tag is <code>
UNINIT
</code>.
286
if (tag == OBJECT || tag ==
UNINIT
) {
346
if (tag == OBJECT || tag ==
UNINIT
) {
582
* if the tag is <code>
UNINIT
</code>.
618
* if the tag is <code>
UNINIT
</code>.
640
* if the tag is <code>
UNINIT
</code>.
646
* if the tag is <code>
UNINIT
</code>.
667
if (tag == OBJECT || tag ==
UNINIT
)
[
all
...]
/external/javassist/src/main/javassist/bytecode/analysis/
Type.java
75
public static final Type
UNINIT
= new Type(null);
252
if ((type ==
UNINIT
&& isReference()) || this ==
UNINIT
&& type.isReference())
289
if (type == Type.
UNINIT
)
291
if (this == Type.
UNINIT
)
583
if (this ==
UNINIT
)
584
return "
UNINIT
";
Completed in 32 milliseconds