/dalvik/vm/mterp/c/ |
OP_CHECK_CAST.cpp | 24 if (!dvmInstanceof(obj->clazz, clazz)) {
|
OP_INSTANCE_OF.cpp | 26 SET_REGISTER(vdst, dvmInstanceof(obj->clazz, clazz));
|
/dalvik/vm/oo/ |
TypeCheck.h | 27 /* used by dvmInstanceof; don't call */ 36 INLINE int dvmInstanceof(const ClassObject* instance, const ClassObject* clazz)
|
TypeCheck.cpp | 100 return dvmInstanceof(subElemClass, clazz->elementClass); 144 * I'm not checking that here, because dvmInstanceof tests for
|
Array.cpp | 505 if (!dvmInstanceof(src[count]->clazz, dstElemClass)) {
|
/dalvik/vm/ |
Exception.cpp | 280 if (!dvmInstanceof(cause->clazz, gDvm.exThrowable)) { 471 if (dvmInstanceof(exception->clazz, gDvm.exError) || 472 dvmInstanceof(exception->clazz, gDvm.exRuntimeException)) 541 if (!dvmInstanceof(exception->clazz, gDvm.exThrowable)) { 687 if (dvmInstanceof(excepClass, throwable)) { 854 if (!dvmInstanceof(method->clazz, gDvm.exThrowable)) [all...] |
CheckJni.cpp | 113 if (!dvmInstanceof(objClazz, declClazz)) { 311 if (!dvmInstanceof(objClass, fieldClass)) { 443 if (!dvmInstanceof(clazz, method->clazz)) { 464 if (!dvmInstanceof(obj->clazz, method->clazz)) { [all...] |
Debugger.cpp | 815 } else if (dvmInstanceof(clazz, gDvm.classJavaLangThread)) { 817 } else if (dvmInstanceof(clazz, gDvm.classJavaLangThreadGroup)) { 819 } else if (dvmInstanceof(clazz, gDvm.classJavaLangClassLoader)) { 1131 return dvmInstanceof(instClazz, clazz); [all...] |
Jni.cpp | [all...] |
/dalvik/vm/native/ |
InternalNative.cpp | 159 } else if (!dvmInstanceof(obj->clazz, clazz)) {
|
java_lang_System.cpp | 293 dvmInstanceof(srcClass, dstClass))
|
java_lang_Class.cpp | 446 RETURN_INT(dvmInstanceof(testClass, thisPtr)); 462 RETURN_INT(dvmInstanceof(testObj->clazz, thisPtr));
|
java_lang_reflect_Field.cpp | 95 isInstance = dvmInstanceof(obj->clazz, callerClass);
|
/dalvik/vm/reflect/ |
Proxy.cpp | 584 if (dvmInstanceof(classes[i], classes[j])) { 587 } else if (dvmInstanceof(classes[j], classes[i])) { 677 } else if (dvmInstanceof(mixSet[i], declSet[j])) { 680 } else if (dvmInstanceof(declSet[j], mixSet[i])) { 726 bool result = dvmInstanceof(subClass, baseClass); [all...] |
Reflect.cpp | 1037 if ((arg == NULL) || dvmInstanceof(arg->clazz, type)) { [all...] |
/dalvik/vm/alloc/ |
Alloc.cpp | 336 if (obj->clazz != NULL && dvmInstanceof(obj->clazz, ctx->clazz)) {
|
/dalvik/vm/analysis/ |
CodeVerify.cpp | [all...] |
/dalvik/vm/mterp/out/ |
InterpC-allstubs.cpp | [all...] |
InterpC-portable.cpp | [all...] |