HomeSort by relevance Sort by last modified time
    Searched defs:OBJECT (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /frameworks/base/tools/layoutlib/create/tests/mock_data/mock_android/util/
EmptyArray.java 23 public static final Object[] OBJECT = new Object[0];
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 7 public static final java.lang.Object OBJECT;
8 static { OBJECT = null; }
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/
InterfaceEnum.java 21 public static final Object OBJECT = new Object();
  /external/conscrypt/src/main/java/org/conscrypt/util/
EmptyArray.java 31 public static final Object[] OBJECT = new Object[0];
  /dalvik/hit/src/com/android/hit/
Types.java 22 public static final int OBJECT = 2;
38 case '[': return mIdSize; // array object
39 case 'L': return mIdSize; // object
49 case OBJECT: return mIdSize;
66 case 'L': return "object";
76 case OBJECT: return "object";
  /libcore/luni/src/main/java/libcore/util/
EmptyArray.java 31 public static final Object[] OBJECT = new Object[0];
  /external/chromium_org/webkit/common/
resource_type.h 24 OBJECT, // an object (or embed) tag for a plugin,
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicsTest.java 32 private static final Object OBJECT = new Object();
40 assertEquals(OBJECT, Atomics.newReference(OBJECT).get());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
Type.java 15 OBJECT(null, "null", "", null, null);
17 Type(Object defaultReturnValue, String defaultReturnString, String unboxString, String nonPrimitiveClassName, Class type) {
25 private Object defaultReturnValue;
31 Object defaultReturnValue() {
71 return OBJECT;
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 64 /** The {@code Object} type. */
65 public static final TypeId<Object> OBJECT = new TypeId<Object>(com.android.dx.rop.type.Type.OBJECT);
136 @Override public boolean equals(Object o) {
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 31 /** {@code non-null;} instance corresponding to the class {@code Object} */
32 public static final CstType OBJECT = intern(Type.OBJECT);
140 * @param clazz {@code non-null;} the underlying {@code Class} object
168 public boolean equals(Object other) {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 31 /** {@code non-null;} instance corresponding to the class {@code Object} */
32 public static final CstType OBJECT = intern(Type.OBJECT);
159 public boolean equals(Object other) {
  /external/chromium_org/tools/json_schema_compiler/
model.py 21 class Model(object):
46 class ComplexFeature(object):
59 class SimpleFeature(object):
78 class Namespace(object):
125 class Origin(object):
126 """Stores the possible origin of model object as a pair of bools. These are:
144 class Type(object):
224 elif json_type == 'object':
232 self.property_type = PropertyType.OBJECT
245 # of an object. Use the name of the property in that case
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstType.java 31 /** {@code non-null;} instance corresponding to the class {@code Object} */
32 public static final CstType OBJECT = intern(Type.OBJECT);
159 public boolean equals(Object other) {
  /external/harfbuzz_ng/test/api/
test-object.c 29 /* Unit tests for hb-object-private.h */
175 #undef OBJECT
214 void *object; member in struct:__anon25500
222 g_assert (NULL == t->klass->get_user_data (t->object, &t->key));
241 g_test_message ("Testing object %s", o->name);
261 /* Should still work even if object is made immutable */
304 deadlock_test.object = obj;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Type.java 95 * The sort of object reference type. See {@link #getSort getSort}.
97 public static final int OBJECT = 10;
218 return new Type(buf[0] == '[' ? ARRAY : OBJECT, buf, 0, buf.length);
282 off += args[size].len + (args[size].sort == OBJECT ? 2 : 0);
376 return new Type(OBJECT, buf, off + 1, len - 1);
391 * {@link #OBJECT OBJECT}.
452 // case OBJECT:
459 * Returns the internal name of the class corresponding to this object or
462 * should only be used for an object or array type.
    [all...]
Frame.java 73 * one of the constants defined in FrameVisitor, or for OBJECT and
141 static final int OBJECT = BASE | 0x700000;
628 return OBJECT | cw.addType(t);
666 data = OBJECT | cw.addType(t);
754 s = OBJECT | cw.addType(cw.thisName);
757 s = OBJECT | cw.addType(type);
797 inputLocals[i++] = OBJECT | cw.addType(cw.thisName);
891 push(OBJECT | cw.addType("java/lang/Class"));
895 push(OBJECT | cw.addType("java/lang/String"));
    [all...]
  /external/qemu/include/qom/
object.h 2 * QEMU Object Model
29 typedef struct Object Object;
36 #define TYPE_OBJECT "object"
39 * SECTION:object.h
40 * @title:Base Object Type System
43 * The QEMU Object Model provides a framework for registering user creatable
92 * Using object_new(), a new #Object derivative will be instantiated. You can
93 * cast an #Object to a subclass (or base-class) type using
112 * Before an object is initialized, the class for the object must b
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 41 /** {@code non-null;} the list {@code [Object]} */
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
68 /** {@code non-null;} the list {@code [Object, Object]} */
70 StdTypeList.make(Type.OBJECT, Type.OBJECT);
72 /** {@code non-null;} the list {@code [int, Object]} */
74 StdTypeList.make(Type.INT, Type.OBJECT);
76 /** {@code non-null;} the list {@code [long, Object]} */
    [all...]
Type.java 65 /** basic type constant for {@code Object} */
153 /** {@code non-null;} instance representing {@code java.lang.Object} */
154 public static final Type OBJECT = intern("Ljava/lang/Object;");
249 /** {@code non-null;} instance representing {@code Object[]} */
250 public static final Type OBJECT_ARRAY = OBJECT.getArrayType();
299 * given {@code Class} object. See vmspec-2 sec4.3.2 for details on the
399 * given {@code Class} object, allowing {@code "V"} to return the type
531 public boolean equals(Object other) {
653 throw new IllegalArgumentException("not an object type: "
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 41 /** {@code non-null;} the list {@code [Object]} */
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
68 /** {@code non-null;} the list {@code [Object, Object]} */
70 StdTypeList.make(Type.OBJECT, Type.OBJECT);
72 /** {@code non-null;} the list {@code [int, Object]} */
74 StdTypeList.make(Type.INT, Type.OBJECT);
76 /** {@code non-null;} the list {@code [long, Object]} */
    [all...]
Type.java 63 /** basic type constant for {@code Object} */
137 /** {@code non-null;} instance representing {@code java.lang.Object} */
138 public static final Type OBJECT = intern("Ljava/lang/Object;");
233 /** {@code non-null;} instance representing {@code Object[]} */
234 public static final Type OBJECT_ARRAY = OBJECT.getArrayType();
464 public boolean equals(Object other) {
586 throw new IllegalArgumentException("not an object type: " +
760 * if this instance is in fact an uninitialized object type.
807 * index. This instance must be an initialized object type
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
navigation_shifter.js 73 * @type {Object.<string, number>}
80 'OBJECT': 4,
86 * Stores state variables in a provided object.
88 * @param {Object} store The object.
96 * Updates the object with state variables from an earlier storeOn call.
98 * @param {Object} store The object.
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 41 /** {@code non-null;} the list {@code [Object]} */
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
68 /** {@code non-null;} the list {@code [Object, Object]} */
70 StdTypeList.make(Type.OBJECT, Type.OBJECT);
72 /** {@code non-null;} the list {@code [int, Object]} */
74 StdTypeList.make(Type.INT, Type.OBJECT);
76 /** {@code non-null;} the list {@code [long, Object]} */
    [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 108 public static final int OBJECT = 7;
185 if (tag == OBJECT) {
257 dest[pos] = OBJECT;
328 writer.writeVerifyTypeInfo(OBJECT, clazz);
366 if (varTag == OBJECT)
367 writer.writeVerifyTypeInfo(OBJECT, varData);
431 if (tag == OBJECT)
447 if (tag == OBJECT) {
532 if (tag == StackMap.OBJECT || tag == StackMap.UNINIT)

Completed in 840 milliseconds

1 2 3 4 5