HomeSort by relevance Sort by last modified time
    Searched refs:OBJECT (Results 126 - 150 of 378) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 19 TYPE Seller = OBJECT
123 TYPE Seller = OBJECT
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
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/
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/dexmaker/src/dx/java/com/android/dx/rop/type/
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/tpm2/
Global.h 108 // Loaded Object Structures
112 // The structures in this section define the object layout as it exists in TPM memory.
113 // Two types of objects are defined: an ordinary object such as a key, and a sequence object that may be a
118 // An OBJECT_ATTRIBUTES structure contains the variable attributes of an object. These properties are
119 // not part of the public properties but are used by the TPM in managing the object. An
120 // OBJECT_ATTRIBUTES is used in the definition of the OBJECT data type.
125 // an object is loaded
126 unsigned epsHierarchy : 1; //1) SET if the object belongs to EPS
128 unsigned ppsHierarchy : 1; //2) SET if the object belongs to PP
1084 ANY_OBJECT object; member in struct:__anon23229
    [all...]
PropertyCap.c 194 // TPM2_ContextSave for object context
206 // Add OBJECT structure size
207 *value += sizeof(OBJECT);
211 // TPM2_ContextSave for object context
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AbstractClassAdapter.java 62 * Renames an object type, e.g. "Lcom.package.MyClass;" or an array type that has an
63 * object element, e.g. "[Lcom.package.MyClass;"
71 if (type.getSort() == Type.OBJECT) {
86 * Renames an object type, e.g. "Lcom.package.MyClass;" or an array type that has an
87 * object element, e.g. "[Lcom.package.MyClass;".
88 * This is like renameType() except that it returns a Type object.
89 * If the type doesn't need to be renamed, returns the input type object.
96 if (type.getSort() == Type.OBJECT) {
211 String signature, Object value) {
281 public void visitLdcInsn(Object cst)
    [all...]
StubMethodAdapter.java 85 "(Ljava/lang/String;ZLjava/lang/Object;)V",
97 "(Ljava/lang/String;ZLjava/lang/Object;)I",
125 "(Ljava/lang/String;ZLjava/lang/Object;)J",
133 "(Ljava/lang/String;ZLjava/lang/Object;)F",
141 "(Ljava/lang/String;ZLjava/lang/Object;)D",
146 case Type.OBJECT:
150 "(Ljava/lang/String;ZLjava/lang/Object;)Ljava/lang/Object;",
172 case Type.OBJECT:
306 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack)
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
resolve.cc 27 #include "object.h"
92 Object* object, const char* version)
95 this->u_.from_object.object = object;
100 if (object->pluginobj() == NULL)
105 if (object->is_dynamic())
118 Object* object, const char* version)
120 this->override_base(sym, st_shndx, is_ordinary, object, version)
    [all...]
  /frameworks/base/core/java/android/util/
ArraySet.java 31 * separate from ArrayMap, however, so the Object array contains only one item for each
63 * Object[] variable is a pointer to a linked list of array objects.
67 static Object[] mBaseCache;
69 static Object[] mTwiceBaseCache;
74 Object[] mArray;
78 private int indexOf(Object key, int hash) {
158 final Object[] array = mTwiceBaseCache;
161 mTwiceBaseCache = (Object[]) array[0];
181 final Object[] array = mBaseCache;
184 mBaseCache = (Object[]) array[0]
    [all...]
LongSparseArray.java 28 * auto-boxing keys and its data structure doesn't rely on an extra entry object
53 private static final Object DELETED = new Object();
57 private Object[] mValues;
77 mValues = EmptyArray.OBJECT;
100 * Gets the Object mapped from the specified key, or <code>null</code>
108 * Gets the Object mapped from the specified key, or the specified Object
159 Object[] values = mValues;
162 Object val = values[i]
    [all...]
SparseArray.java 28 * auto-boxing keys and its data structure doesn't rely on an extra entry object
53 private static final Object DELETED = new Object();
57 private Object[] mValues;
77 mValues = EmptyArray.OBJECT;
100 * Gets the Object mapped from the specified key, or <code>null</code>
108 * Gets the Object mapped from the specified key, or the specified Object
196 Object[] values = mValues;
199 Object val = values[i]
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
wildcard_iterator.py 44 class WildcardIterator(object):
64 (for example to get the name and size of each object), because that
65 information is available in the object list results.
78 object version.
92 In the case where no wildcard is present, returns a single matching object,
109 BucketListingRef of type BUCKET, OBJECT or PREFIX.
114 # each object and prefix. If we're not using the default of requesting
134 # iterate over the expanded bucket strings and handle any object
139 # IsBucket() guarantees there are no prefix or object wildcards, and
147 if obj_or_prefix.datatype == CloudApi.CsObjectOrPrefixType.OBJECT
    [all...]
cloud_api.py 20 class CloudApi(object):
64 Bucket object.
101 metadata: Bucket object defining metadata to be updated.
103 canned_def_acl: Canned default object ACL to apply to the bucket.
114 Bucket object describing new bucket metadata.
125 metadata: Bucket object defining new bucket metadata.
135 Bucket object describing new bucket metadata.
157 class CsObjectOrPrefixType(object):
159 OBJECT = 'object' # Cloud objec
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 247 if (type.equals(Type.OBJECT)) {
  /dalvik/dx/src/com/android/dx/cf/code/
BaseMachine.java 427 if (localType == Type.OBJECT) {
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 246 if (type.equals(Type.OBJECT)) {
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/
html.js 117 OBJECT: 'object',
230 SPECIAL_ELEMENTS[NS.HTML][$.OBJECT] = true;
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
StdCatchBuilder.java 247 if (type.equals(Type.OBJECT)) {
  /external/dexmaker/src/main/java/com/google/dexmaker/stock/
ProxyBuilder.java 59 * public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
64 * Object result = ProxyBuilder.callSuper(proxy, method, args);
84 * The static method {@link #callSuper(Object, Method, Object...)} allows you to access the original
90 * {@link #constructorArgTypes(Class[])} and {@link #constructorArgValues(Object[])}.
99 * The {@link #finalize()} method on {@code Object} will not be proxied.
139 private Object[] constructorArgValues = new Object[0]
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
BasicInterpreter.java 72 case Type.OBJECT:
105 Object cst = ((LdcInsnNode) insn).cst;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
InterceptFieldTransformer.java 74 public void declare_field(int access, String name, Type type, Object value) {
201 case Type.OBJECT:
211 "Object" :
  /external/skia/tests/
PDFPrimitivesTest.cpp 74 #define ASSERT_EMIT_EQ(REPORTER, OBJECT, STRING) \
76 SkString result = emit_to_string(OBJECT); \
139 // Assert that repeated calls to get the object number return
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 55 * {@code null-ok;} the class file object being constructed;
261 ((exceptionClass == CstType.OBJECT) ? "<any>" :
  /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:__anon11702
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;

Completed in 5599 milliseconds

1 2 3 4 56 7 8 91011>>