Searched defs:sub (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/oo/
H A DTypeCheck.h54 * Determine whether "sub" is a sub-class of "clazz".
58 INLINE int dvmIsSubClass(const ClassObject* sub, const ClassObject* clazz) { argument
60 /*printf("###### sub='%s' clazz='%s'\n", sub->name, clazz->name);*/
61 if (sub == clazz)
63 sub = sub->super;
64 } while (sub != NULL);
H A DTypeCheck.cpp57 * Determine whether "sub" is an instance of "clazz", where both of these
76 * "subElemClass" is sub->elementClass.
78 * "subDim" is usually just sub->dim, but for some kinds of checks we want
84 //assert(dvmIsArrayClass(sub));
97 * See if "sub" is an instance of "clazz". This handles the
132 * Determine whether "sub" is a sub-class of "clazz", where "sub" is an
137 static int isArrayInstanceOf(const ClassObject* sub, const ClassObject* clazz) argument
139 assert(dvmIsArrayClass(sub));
[all...]

Completed in 56 milliseconds