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

1 2

  /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";
  /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/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):
51 class ComplexFeature(object):
64 class SimpleFeature(object):
83 class Namespace(object):
135 class Origin(object):
136 """Stores the possible origin of model object as a pair of bools. These are:
154 class Type(object):
234 elif json_type == 'object':
242 self.property_type = PropertyType.OBJECT
255 # 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:__anon1250
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...]
  /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/chromium_org/v8/src/ic/
ic-state.h 137 void Update(Handle<Object> left, Handle<Object> right, Handle<Object> result);
146 Kind UpdateKind(Handle<Object> object, Kind kind) const;
186 // KNOWN_OBJECT < OBJECT
194 OBJECT, // JSObject
202 static State NewInputState(State old_state, Handle<Object> value);
208 Handle<Object> x, Handle<Object> y)
    [all...]
  /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...]
Type.java 64 /** basic type constant for {@code Object} */
138 /** {@code non-null;} instance representing {@code java.lang.Object} */
139 public static final Type OBJECT = intern("Ljava/lang/Object;");
234 /** {@code non-null;} instance representing {@code Object[]} */
235 public static final Type OBJECT_ARRAY = OBJECT.getArrayType();
465 public boolean equals(Object other) {
587 throw new IllegalArgumentException("not an object type: " +
761 * if this instance is in fact an uninitialized object type.
808 * index. This instance must be an initialized object type
    [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)
StackMapTable.java 131 public static final int OBJECT = 7;
244 if (tag == OBJECT || tag == UNINIT) {
261 * if the tag is <code>OBJECT</code>,
286 if (tag == OBJECT || tag == UNINIT) {
346 if (tag == OBJECT || tag == UNINIT) {
410 if (tag == OBJECT)
419 if (tags[i] == OBJECT)
468 return OBJECT;
580 * if the tag is <code>OBJECT</code>,
616 * if the tag is <code>OBJECT</code>
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 34 * be used when examining them. Normal java types must use {@link #equals(Object)} to
68 * It is important not to treat this type as java.lang.Object, since a null can
95 /** Represents the java.lang.Object reference type */
96 public static final Type OBJECT = lookupType("java.lang.Object");
172 * Returns whether or not this type is a normal java reference, i.e. it is or extends java.lang.Object.
366 // then Object is the common type.
368 return Type.OBJECT;
388 return createArray(OBJECT, targetDims);
451 // If its Object, then try and find a common interface(s
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
program_parse.tab.h 91 OBJECT = 309,
199 #define OBJECT 309

Completed in 3647 milliseconds

1 2