Searched defs:UNINIT (Results 1 - 7 of 7) sorted by last modified time

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DRegisterType.java99 public static final byte UNINIT = 1; field in class:RegisterType
153 /* UNKNOWN UNINIT NULL ONE, BOOLEAN BYTE POS_BYTE SHORT POS_SHORT CHAR INTEGER, FLOAT, LONG_LO LONG_HI DOUBLE_LO DOUBLE_HI UNINIT_REF UNINIT_THIS REFERENCE CONFLICTED*/
154 /*UNKNOWN*/ {UNKNOWN, UNINIT, NULL, ONE, BOOLEAN, BYTE, POS_BYTE, SHORT, POS_SHORT, CHAR, INTEGER, FLOAT, LONG_LO, LONG_HI, DOUBLE_LO, DOUBLE_HI, UNINIT_REF, UNINIT_THIS,REFERENCE, CONFLICTED},
155 /*UNINIT*/ {UNINIT, UNINIT, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED, CONFLICTED},
178 public static final RegisterType UNINIT_TYPE = new RegisterType(UNINIT, null);
315 case UNINIT:
/external/robolectric/v1/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/javassist/src/main/javassist/bytecode/
H A DStackMap.java113 public static final int UNINIT = 8; field in class:StackMap
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)
H A DStackMapTable.java136 public static final int UNINIT = 8; field in class:StackMapTable
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/
H A DType.java75 public static final Type UNINIT = new Type(null); field in class:Type
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";
/external/guice/extensions/struts2/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/clang/test/Sema/
H A Duninit-variables.c432 #define UNINIT(T, x, y) T x; T y = x; macro
435 UNINIT(int, a, b); // expected-warning {{variable 'a' is uninitialized when used here}} \

Completed in 219 milliseconds