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

/dalvik/dx/tests/089-dex-define-object/
H A DObject.java19 public class Object { class
20 public Object() { method in class:Object
24 public boolean equals(Object o) {
32 public final native Class<? extends Object> getClass();
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DObject.java39 * {@code Object} provides some fundamental methods for accessing the
41 * whether one object {@link #equals(Object)} another. The {@link #toString()}
47 * each {@code Object}.
51 public class Object { class
54 * Constructs a new instance of {@code Object}.
58 public Object() { method in class:Object
62 * Creates and returns a copy of this {@code Object}. The default
77 protected Object clone() throws CloneNotSupportedException {
88 private native Object internalClone(Cloneable o);
96 * The implementation in {@code Object} return
[all...]
/dalvik/vm/oo/
H A DObject.h18 * Declaration of the fundamental Object type and refinements thereof, plus
185 #define CLASS_SMALLEST_OFFSET (sizeof(struct Object))
240 * All objects have an Object header followed by type-specific data.
242 typedef struct Object { struct
251 } Object; typedef in typeref:struct:Object
254 * Properly initialize an Object.
255 * void DVM_OBJECT_INIT(Object *obj, ClassObject *clazz_)
261 * Data objects have an Object header followed by their instance data.
264 Object obj; /* MUST be first item */
282 Object ob
[all...]

Completed in 2859 milliseconds