Lines Matching refs:thisPtr
34 ClassObject* thisPtr = (ClassObject*) args[0];
35 char* className = dvmDescriptorToName(thisPtr->descriptor);
154 ClassObject* thisPtr = (ClassObject*) args[0];
156 if (!dvmIsArrayClass(thisPtr))
160 * We can't just return thisPtr->elementClass, because that gives
164 if (thisPtr->descriptor[1] == '[')
165 RETURN_PTR(dvmFindArrayClass(&thisPtr->descriptor[1],
166 thisPtr->classLoader));
168 RETURN_PTR(thisPtr->elementClass);
439 ClassObject* thisPtr = (ClassObject*) args[0];
446 RETURN_INT(dvmInstanceof(testClass, thisPtr));
457 ClassObject* thisPtr = (ClassObject*) args[0];
462 RETURN_INT(dvmInstanceof(testObj->clazz, thisPtr));
471 ClassObject* thisPtr = (ClassObject*) args[0];
473 RETURN_INT(dvmIsInterfaceClass(thisPtr));
482 ClassObject* thisPtr = (ClassObject*) args[0];
484 RETURN_INT(dvmIsPrimitiveClass(thisPtr));