Searched defs:getClass (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/libcore/reflect/
H A DInternalNames.java28 public static Class<?> getClass(ClassLoader classLoader, String internalName) { method in class:InternalNames
30 Class<?> componentClass = getClass(classLoader, internalName.substring(1));
31 return Array.newInstance(componentClass, 0).getClass();
/libcore/libdvm/src/main/java/java/lang/
H A DObject.java121 * return getClass().getName() + "[" +
228 * object's class. Note that {@code getClass()} is a special case in that it
230 * erasure of the type of the expression {@code getClass()} was called upon.
237 * Class<? extends List> c = l.getClass();}</pre>
241 public final native Class<?> getClass(); method in class:Object
324 * getClass().getName() + '@' + Integer.toHexString(hashCode())</pre>
332 return getClass().getName() + '@' + Integer.toHexString(hashCode());
/libcore/libart/src/main/java/java/lang/
H A DObject.java121 * return getClass().getName() + "[" +
162 throw new CloneNotSupportedException("Class " + getClass().getName() +
236 * object's class. Note that {@code getClass()} is a special case in that it
238 * erasure of the type of the expression {@code getClass()} was called upon.
245 * Class<? extends List> c = l.getClass();}</pre>
249 public final Class<?> getClass() { method in class:Object
336 * getClass().getName() + '@' + Integer.toHexString(hashCode())</pre>
344 return getClass().getName() + '@' + Integer.toHexString(hashCode());

Completed in 1377 milliseconds