Home
last modified time | relevance | path

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

/external/proguard/src/proguard/classfile/attribute/preverification/
DVerificationTypeFactory.java32 static final LongType LONG_TYPE = new LongType(); field in VerificationTypeFactory
53 return LONG_TYPE; in createLongType()
DLongType.java38 return LONG_TYPE; in getTag()
DVerificationType.java39 public static final int LONG_TYPE = 4; field in VerificationType
/external/llvm/test/Transforms/ArgumentPromotion/
Dreserve-tbaa.ll51 ; CHECK: ![[LONG]] = !{![[LONG_TYPE:[0-9]+]], ![[LONG_TYPE]], i64 0}
52 ; CHECK: ![[LONG_TYPE]] = !{!"long", !{{.*}}, i64 0}
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DMethodExitWithReturnValueDebuggee.java36 public static final String LONG_TYPE = "LONG"; field in MethodExitWithReturnValueDebuggee
122 }else if(type.equals(LONG_TYPE)){ in run()
DMethodExitWithReturnValueTest.java127 runMethodExitWithReturn(MethodExitWithReturnValueDebuggee.LONG_TYPE); in testMethodExitWithReturnValueOfLong()
219 }else if(type.equals(MethodExitWithReturnValueDebuggee.LONG_TYPE)){ in runMethodExitWithReturn()
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DJarSourceCode.java941 return Type.LONG_TYPE; in getArrayElementTypeForOpcode()
972 return Slot.isCompatible(type, Type.LONG_TYPE); in isCompatibleArrayElementType()
1042 return Type.LONG_TYPE; in opType()
1136 state.push(Type.LONG_TYPE); in updateState()
1344 Type type = opcode == Opcodes.IAND ? Type.INT_TYPE : Type.LONG_TYPE; in updateState()
1352 Type type = opcode == Opcodes.IOR ? Type.INT_TYPE : Type.LONG_TYPE; in updateState()
1360 Type type = opcode == Opcodes.IXOR ? Type.INT_TYPE : Type.LONG_TYPE; in updateState()
1367 updateStateForConversion(Type.INT_TYPE, Type.LONG_TYPE); in updateState()
1376 updateStateForConversion(Type.LONG_TYPE, Type.INT_TYPE); in updateState()
1379 updateStateForConversion(Type.LONG_TYPE, Type.FLOAT_TYPE); in updateState()
[all …]
DJarState.java70 return type != Type.LONG_TYPE && type != Type.DOUBLE_TYPE; in isCategory1()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java1047 case VerificationType.LONG_TYPE: return new LongType(); in createVerificationType()