Home
last modified time | relevance | path

Searched refs:createInt (Results 1 – 11 of 11) sorted by relevance

/external/r8/src/test/java/com/android/tools/r8/debug/
DLocalsTest.java50 checkLocal("i", Value.createInt(Integer.MAX_VALUE)), in testUnusedLocal()
58 Value pValue = Value.createInt(10); in testConstantLocal()
59 Value cValue = Value.createInt(5); in testConstantLocal()
60 Value vValue = Value.createInt(pValue.getIntValue() + cValue.getIntValue()); in testConstantLocal()
84 Value pValue = Value.createInt(10); in testConstantLocalWithUpdate()
85 Value cValue = Value.createInt(5); in testConstantLocalWithUpdate()
86 Value newValue = Value.createInt(5); in testConstantLocalWithUpdate()
87 Value vValue = Value.createInt(pValue.getIntValue() + newValue.getIntValue()); in testConstantLocalWithUpdate()
113 final Value newValueForI = Value.createInt(10); in testZeroLocals()
123 checkLocal("i", Value.createInt(0)), in testZeroLocals()
[all …]
DDebugTestExamples.java42 checkLocal("x", Value.createInt(12345)), in testLocalsOnBreakpoint()
43 checkLocal("y", Value.createInt(54321)), in testLocalsOnBreakpoint()
55 checkLocal("x", Value.createInt(12345)), in testLocalsOnBreakpointThenStep()
56 checkLocal("y", Value.createInt(54321)), in testLocalsOnBreakpointThenStep()
58 checkLocal("x", Value.createInt(12345)), in testLocalsOnBreakpointThenStep()
59 checkLocal("y", Value.createInt(54321)), in testLocalsOnBreakpointThenStep()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DNewInstanceStringTest.java74 constructorArguments.add(Value.createInt(0)); in testNewInstanceString_ByteArrayIntIntConstructor()
75 constructorArguments.add(Value.createInt(1)); in testNewInstanceString_ByteArrayIntIntConstructor()
95 constructorArguments.add(Value.createInt(0)); in testNewInstanceString_ByteArrayIntIntStringConstructor()
96 constructorArguments.add(Value.createInt(1)); in testNewInstanceString_ByteArrayIntIntStringConstructor()
138 constructorArguments.add(Value.createInt(0)); in testNewInstanceString_ByteArrayIntIntCharsetConstructor()
139 constructorArguments.add(Value.createInt(1)); in testNewInstanceString_ByteArrayIntIntCharsetConstructor()
193 constructorArguments.add(Value.createInt(0)); in testNewInstanceString_CharArrayIntIntConstructor()
194 constructorArguments.add(Value.createInt(1)); in testNewInstanceString_CharArrayIntIntConstructor()
245 constructorArguments.add(Value.createInt(0)); in testNewInstanceString_IntArrayIntIntConstructor()
246 constructorArguments.add(Value.createInt(1)); in testNewInstanceString_IntArrayIntIntConstructor()
DSetValuesTest.java95 testField(classID, fieldInfo, Value.createInt(Integer.MIN_VALUE)); in testField()
96 testField(classID, fieldInfo, Value.createInt(Integer.MAX_VALUE)); in testField()
97 testField(classID, fieldInfo, Value.createInt(0)); in testField()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
DSetValues002Test.java103 Value oldValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE); in testSetValues005_Int()
104 Value newValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE_TO_SET); in testSetValues005_Int()
121 Value oldValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE); in testSetValues005_IntConstant()
122 Value newValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE_TO_SET); in testSetValues005_IntConstant()
139 Value oldValueForLocal1 = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE); in testSetValues005_IntTwoConstants()
140 Value newValueForLocal1 = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE_TO_SET); in testSetValues005_IntTwoConstants()
141 Value oldValueForLocal2 = Value.createInt(-StackTrace002Debuggee.INT_PARAM_VALUE); in testSetValues005_IntTwoConstants()
142 Value newValueForLocal2 = Value.createInt(-StackTrace002Debuggee.INT_PARAM_VALUE_TO_SET); in testSetValues005_IntTwoConstants()
162 Value oldValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE); in testSetValues005_IntConstantWithException()
163 Value newValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE_TO_SET); in testSetValues005_IntConstantWithException()
[all …]
DGetValues002Test.java99 Value oldValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE); in testGetValues005_Int()
115 Value oldValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE); in testGetValues005_Int2()
116 Value nextValue = Value.createInt(StackTrace002Debuggee.INT_PARAM_VALUE * 2); in testGetValues005_Int2()
DSetValuesTest.java208 packet.setNextValueAsValue(Value.createInt(12345)); in examineGetValues()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
DSetValuesTest.java75 valuesRegion.setValue(j, Value.createInt(-j)); in testSetValues001()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DForceEarlyReturnTest.java153 expectedValue = Value.createInt(EXPECTED_INT); in testForceEarlyReturn_ReturnInt()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DValue.java67 public static Value createInt(int value) { in createInt() method in Value
DPacket.java1091 return Value.createInt(this.getNextValueAsInt()); in getNextValueAsUntaggedValue()