Home
last modified time | relevance | path

Searched refs:DOUBLE_TYPE (Results 1 – 8 of 8) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/preverification/
DVerificationTypeFactory.java34 static final DoubleType DOUBLE_TYPE = new DoubleType(); field in VerificationTypeFactory
69 return DOUBLE_TYPE; in createDoubleType()
DDoubleType.java38 return DOUBLE_TYPE; in getTag()
DVerificationType.java38 public static final int DOUBLE_TYPE = 3; field in VerificationType
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DMethodExitWithReturnValueDebuggee.java38 public static final String DOUBLE_TYPE = "DOUBLE"; field in MethodExitWithReturnValueDebuggee
125 }else if(type.equals(DOUBLE_TYPE)){ in run()
DMethodExitWithReturnValueTest.java137 runMethodExitWithReturn(MethodExitWithReturnValueDebuggee.DOUBLE_TYPE); in testMethodExitWithReturnValueOfDouble()
224 }else if(type.equals(MethodExitWithReturnValueDebuggee.DOUBLE_TYPE)){ in runMethodExitWithReturn()
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DJarSourceCode.java944 return Type.DOUBLE_TYPE; in getArrayElementTypeForOpcode()
975 return Slot.isCompatible(type, Type.DOUBLE_TYPE); in isCompatibleArrayElementType()
1056 return Type.DOUBLE_TYPE; in opType()
1145 state.push(Type.DOUBLE_TYPE); in updateState()
1373 updateStateForConversion(Type.INT_TYPE, Type.DOUBLE_TYPE); in updateState()
1382 updateStateForConversion(Type.LONG_TYPE, Type.DOUBLE_TYPE); in updateState()
1391 updateStateForConversion(Type.FLOAT_TYPE, Type.DOUBLE_TYPE); in updateState()
1394 updateStateForConversion(Type.DOUBLE_TYPE, Type.INT_TYPE); in updateState()
1397 updateStateForConversion(Type.DOUBLE_TYPE, Type.LONG_TYPE); in updateState()
1400 updateStateForConversion(Type.DOUBLE_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.java1048 case VerificationType.DOUBLE_TYPE: return new DoubleType(); in createVerificationType()