Home | History | Annotate | Download | only in analysis

Lines Matching defs:thisClass

5371                 ClassObject* thisClass;
5373 thisClass = regTypeReferenceToClass(thisType, uninitMap);
5374 assert(thisClass != NULL);
5377 if (calledMethod->clazz == thisClass->super) {
5378 if (thisClass != meth->clazz) {
5384 } else if (calledMethod->clazz != thisClass) {
5460 ClassObject* thisClass;
5462 thisClass = regTypeInitializedReferenceToClass(thisType);
5463 if (thisClass == NULL) {
5470 * Either "thisClass" needs to be the interface class that
5472 * of the interfaces implemented by "thisClass". (Or, if
5475 if (thisClass != absMethod->clazz &&
5476 thisClass != gDvm.classJavaLangObject &&
5477 !dvmImplements(thisClass, absMethod->clazz))
5480 absMethod->name, thisClass->descriptor);