Home
last modified time | relevance | path

Searched refs:unboxMethod (Results 1 – 3 of 3) sorted by relevance

/external/dexmaker/dexmaker-mockito-inline-extended/src/main/jni/staticjvmtiagent/
Dagent.cc192 std::string unboxMethod; member
210 boxingInfo.unboxMethod = "byteValue"; in getBoxingInfo()
214 boxingInfo.unboxMethod = "shortValue"; in getBoxingInfo()
218 boxingInfo.unboxMethod = "intValue"; in getBoxingInfo()
222 boxingInfo.unboxMethod = "charValue"; in getBoxingInfo()
226 boxingInfo.unboxMethod = "floatValue"; in getBoxingInfo()
230 boxingInfo.unboxMethod = "booleanValue"; in getBoxingInfo()
234 boxingInfo.unboxMethod = "longValue"; in getBoxingInfo()
238 boxingInfo.unboxMethod = "doubleValue"; in getBoxingInfo()
521 boxingInfo.unboxMethod.c_str(), returnType, {}, {0}); in Java_com_android_dx_mockito_inline_StaticClassTransformer_nativeRedefine()
[all …]
/external/dexmaker/dexmaker-mockito-inline/src/main/jni/dexmakerjvmtiagent/
Dagent.cc192 std::string unboxMethod; member
210 boxingInfo.unboxMethod = "byteValue"; in getBoxingInfo()
214 boxingInfo.unboxMethod = "shortValue"; in getBoxingInfo()
218 boxingInfo.unboxMethod = "intValue"; in getBoxingInfo()
222 boxingInfo.unboxMethod = "charValue"; in getBoxingInfo()
226 boxingInfo.unboxMethod = "floatValue"; in getBoxingInfo()
230 boxingInfo.unboxMethod = "booleanValue"; in getBoxingInfo()
234 boxingInfo.unboxMethod = "longValue"; in getBoxingInfo()
238 boxingInfo.unboxMethod = "doubleValue"; in getBoxingInfo()
720 boxingInfo.unboxMethod.c_str(), returnType, {}, {0}); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine()
[all …]
/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
DProxyBuilder.java652 MethodId<?, ?> unboxMethod = PRIMITIVE_TYPE_TO_UNBOX_METHOD.get(parameter.getType()); in boxIfRequired() local
653 if (unboxMethod == null) { in boxIfRequired()
656 code.invokeStatic(unboxMethod, temp, parameter); in boxIfRequired()