Searched refs:unboxMethod (Results 1 – 4 of 4) sorted by relevance
/external/dexmaker/dexmaker-mockito-inline-extended/src/main/jni/staticjvmtiagent/ |
D | agent.cc | 192 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/ow2-asm/asm-commons/src/main/java/org/objectweb/asm/commons/ |
D | GeneratorAdapter.java | 847 Method unboxMethod; in unbox() local 853 unboxMethod = CHAR_VALUE; in unbox() 857 unboxMethod = BOOLEAN_VALUE; in unbox() 860 unboxMethod = DOUBLE_VALUE; in unbox() 863 unboxMethod = FLOAT_VALUE; in unbox() 866 unboxMethod = LONG_VALUE; in unbox() 871 unboxMethod = INT_VALUE; in unbox() 874 unboxMethod = null; in unbox() 877 if (unboxMethod == null) { in unbox() 881 invokeVirtual(boxedType, unboxMethod); in unbox()
|
/external/dexmaker/dexmaker-mockito-inline/src/main/jni/dexmakerjvmtiagent/ |
D | agent.cc | 192 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/ |
D | ProxyBuilder.java | 652 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()
|