HomeSort by relevance Sort by last modified time
    Searched full:constructorid (Results 1 - 8 of 8) sorted by null

  /external/littlemock/
bug-8297640.patch 7 return (T) newInstance.invoke(null, clazz, constructorId);
14 + final long constructorId = (Long) getConstructorId.invoke(null, Object.class);
18 + return (T) newInstance.invoke(null, clazz, constructorId);
  /external/dexmaker/
bug-8297640.patch 16 + final long constructorId = (Long) getConstructorId.invoke(null, Object.class);
24 + return (T) newInstance.invoke(null, c, constructorId);
  /external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
UnsafeAllocator.java 81 final int constructorId = (Integer) getConstructorId.invoke(null, Object.class);
89 return (T) newInstance.invoke(null, c, constructorId);
104 final long constructorId = (Long) getConstructorId.invoke(null, Object.class);
112 return (T) newInstance.invoke(null, c, constructorId);
  /frameworks/base/media/mca/filterfw/jni/
jni_util.cpp 166 jmethodID constructorID = env->GetMethodID(clazz, "<init>", "(I)V");
167 result = env->NewObject(clazz, constructorID, GetIntValue(value));
170 jmethodID constructorID = env->GetMethodID(clazz, "<init>", "(F)V");
171 result = env->NewObject(clazz, constructorID, GetFloatValue(value));
  /frameworks/base/drm/jni/
android_drm_DrmManagerClient.cpp 309 jmethodID constructorId = NULL;
310 constructorId = env->GetMethodID(localRef, "<init>", "()V");
311 if (NULL != constructorId) {
313 metadata = env->NewObject(localRef, constructorId);
485 jmethodID constructorId
487 jobject processedData = env->NewObject(clazz, constructorId, dataArray,
491 constructorId
495 drmInfoStatus = env->NewObject(localRef, constructorId, statusCode, infoType,
657 jmethodID constructorId = env->GetMethodID(localRef, "<init>", "(I[BI)V");
659 = env->NewObject(localRef, constructorId,
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/
jni_jsobject.mm 496 jmethodID constructorID = env->GetMethodID (JSObjectClass, "<init>", "(D)V");
497 if (constructorID != NULL) {
498 result = env->NewObject (JSObjectClass, constructorID, (jdouble)value.toNumber(exec));
506 jmethodID constructorID = env->GetMethodID (JSObjectClass, "<init>", "(Z)V");
507 if (constructorID != NULL) {
508 result = env->NewObject (JSObjectClass, constructorID, (jboolean)value.toBoolean(exec));
549 jmethodID constructorID = env->GetMethodID (JSObjectClass, "<init>", "(J)V");
550 if (constructorID != NULL) {
551 result = env->NewObject (JSObjectClass, constructorID, nativeHandle);
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JNIUtilityPrivate.cpp 210 jmethodID constructorID = env->GetMethodID(jsObjectClass, "<init>", "(J)V");
211 if (constructorID) {
214 result.l = env->NewObject(jsObjectClass, constructorID, nativeHandle);
  /external/littlemock/src/com/google/testing/littlemock/
LittleMock.java     [all...]

Completed in 276 milliseconds