Searched defs:object (Results 276 - 300 of 809) sorted by relevance

<<11121314151617181920>>

/external/proguard/src/proguard/evaluation/value/
H A DInstructionOffsetValue.java253 public boolean equals(Object object) argument
255 if (object == null ||
256 this.getClass() != object.getClass())
261 InstructionOffsetValue other = (InstructionOffsetValue)object;
H A DParticularDoubleValue.java201 public boolean equals(Object object) argument
204 return super.equals(object) &&
206 Double.doubleToLongBits(((ParticularDoubleValue)object).value);
H A DParticularFloatValue.java201 public boolean equals(Object object) argument
204 return super.equals(object) &&
206 Float.floatToIntBits(((ParticularFloatValue)object).value);
H A DSpecificDoubleValue.java175 public boolean equals(Object object) argument
177 return object != null &&
178 this.getClass() == object.getClass();
H A DSpecificFloatValue.java175 public boolean equals(Object object) argument
177 return object != null &&
178 this.getClass() == object.getClass();
H A DUnknownDoubleValue.java108 public boolean equals(Object object) argument
110 return object != null &&
111 this.getClass() == object.getClass();
H A DUnknownFloatValue.java108 public boolean equals(Object object) argument
110 return object != null &&
111 this.getClass() == object.getClass();
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DExtensionRegistryLite.java164 private final Object object; field in class:ExtensionRegistryLite.ObjectIntPair
167 ObjectIntPair(final Object object, final int number) { argument
168 this.object = object;
174 return System.identityHashCode(object) * ((1 << 16) - 1) + number;
182 return object == other.object && number == other.number;
/external/replicaisland/src/com/replica/replicaisland/
H A DDrawableFactory.java32 // This class wraps several object pools and provides a type-sensitive release function.
56 public void release(DrawableObject object) { argument
57 ObjectPool pool = object.getParentPool();
59 pool.release(object);
H A DObjectManager.java21 * an object manager invokes update on its children. ObjectManagers themselves are derived from
52 BaseObject object = mObjects.get(i);
53 object.reset();
62 BaseObject object = (BaseObject)additionsArray[i];
63 mObjects.add(object);
73 BaseObject object = (BaseObject)removalsArray[i];
74 mObjects.remove(object, true);
87 BaseObject object = (BaseObject)objectArray[i];
88 object.update(timeDelta, this);
110 public void add(BaseObject object) { argument
114 remove(BaseObject object) argument
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DTestUtil.java29 public static <T> void assertInstanceOf(Class<? extends T> expectedClass, T object) { argument
30 Class actualClass = object.getClass();
/external/v8/src/
H A Dallocation-site-scopes.h28 bool ShouldCreateMemento(Handle<JSObject> object) { return false; } argument
50 // accompany object literals.
57 void ExitScope(Handle<AllocationSite> site, Handle<JSObject> object);
62 // behind some/all components of a copied object literal.
85 Handle<JSObject> object) {
86 // This assert ensures that we are pointing at the right sub-object in a
88 DCHECK(object.is_null() || *object == scope_site->transition_info());
91 bool ShouldCreateMemento(Handle<JSObject> object);
84 ExitScope(Handle<AllocationSite> scope_site, Handle<JSObject> object) argument
H A Dtransitions-inl.h20 #define CONDITIONAL_WRITE_BARRIER(heap, object, offset, value, mode) \
23 object, HeapObject::RawField(object, offset), value); \
25 heap->RecordWrite(object->address(), offset); \
30 TransitionArray* TransitionArray::cast(Object* object) { argument
31 DCHECK(object->IsTransitionArray());
32 return reinterpret_cast<TransitionArray*>(object);
/external/v8/src/compiler/
H A Djs-graph.cc13 Node* JSGraph::ImmovableHeapConstant(Handle<Object> object) { argument
14 Unique<Object> unique = Unique<Object>::CreateImmovable(object);
/external/v8/test/cctest/
H A Dtest-weakmaps.cc95 Handle<JSObject> object = factory->NewJSObjectFromMap(map); local
96 key = global_handles->Create(*object);
158 Handle<JSObject> object = factory->NewJSObjectFromMap(map); local
159 PutIntoWeakMap(weakmap, object, Handle<Smi>(Smi::FromInt(i), isolate));
203 Handle<JSObject> object = factory->NewJSObject(function, TENURED); local
204 CHECK(!heap->InNewSpace(object->address()));
205 CHECK(!first_page->Contains(object->address()));
206 PutIntoWeakMap(weakmap, key, object);
271 // the object unreachable. Aborting incremental marking will clear all the
H A Dtest-weaksets.cc95 Handle<JSObject> object = factory->NewJSObjectFromMap(map); local
96 key = global_handles->Create(*object);
158 Handle<JSObject> object = factory->NewJSObjectFromMap(map); local
159 PutIntoWeakSet(weakset, object, Handle<Smi>(Smi::FromInt(i), isolate));
203 Handle<JSObject> object = factory->NewJSObject(function, TENURED); local
204 CHECK(!heap->InNewSpace(object->address()));
205 CHECK(!first_page->Contains(object->address()));
206 PutIntoWeakSet(weakset, key, object);
/external/v8/test/mjsunit/es6/
H A Darray-iterator.js37 function assertHasOwnProperty(object, name, attrs) {
38 assertTrue(object.hasOwnProperty(name));
39 var desc = Object.getOwnPropertyDescriptor(object, name);
240 var object = {__proto__: iterator};
243 object.next();
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DAggregateSummaryStatistics.java32 * contributors can be obtained from this object.
81 * object as a prototype for contributing statistics and for the internal
89 * means that other objects are initialized by copying this object's state.
90 * If {@code null}, a new, default statistics object is used. Any statistic
102 * object as a prototype for contributing statistics and for the internal
111 * means that other objects are initialized by copying this object's state.
112 * If {@code null}, a new, default statistics object is used. Any statistic
116 * internal aggregate statistics object. If {@code null}, a new, default
117 * statistics object is used.
364 * aggregate statistics object
395 equals(Object object) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DQName.java32 * Class to represent a qualified name: "The name of an internal XSLT object,
40 * is used as the name of the object. The default namespace is not used for
578 * the passed object is a string and it matches
599 * the passed object is a QName and it matches
604 public boolean equals(Object object) argument
607 if (object == this)
610 if (object instanceof QName) {
611 QName qname = (QName) object;
625 * Given a string, create and return a QName object
630 * @return a QName object
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXRTreeFrag.java34 * This class represents an XPath result tree fragment object, and is capable of
76 * Return a java object that's closest to the representation
79 * @return The object that this class wraps
81 public Object object() method in class:XRTreeFrag
86 return super.object();
116 * In general, detach should only be called once on the object.
147 * Cast result object to a number.
161 * Cast result object to a boolean. This always returns true for a RTreeFrag
174 * Cast result object to an XMLString.
187 * Cast result object t
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509Util.java225 ASN1Encodable object)
246 sig.update(object.toASN1Primitive().getEncoded(ASN1Encoding.DER));
257 ASN1Encodable object)
278 sig.update(object.toASN1Primitive().getEncoded(ASN1Encoding.DER));
220 calculateSignature( ASN1ObjectIdentifier sigOid, String sigName, PrivateKey key, SecureRandom random, ASN1Encodable object) argument
251 calculateSignature( ASN1ObjectIdentifier sigOid, String sigName, String provider, PrivateKey key, SecureRandom random, ASN1Encodable object) argument
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/
H A Dtest_formatter.py7 class Mock(object):
14 object = 'test_object' variable in class:Supplement
/external/clang/test/Sema/
H A Dnonnull.c9 Class *object; member in union:__anon2380
13 this.object->str = str;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DReflectionUtils.java63 // object
218 public static Object invokeMethod(Object object, String signature, Object... arguments) argument
220 Assert.isNotNull(object);
222 // prepare class/object
223 Class<?> refClass = getRefClass(object);
224 Object refObject = getRefObject(object);
239 * @param object
240 * the object to call, may be {@link Class} for invoking static method.
250 public static Object invokeMethod2(Object object, argument
256 return invokeMethod(object, signatur
268 getRefClass(Object object) argument
276 getRefObject(Object object) argument
[all...]
/external/eigen/bench/
H A Dgeometry.cpp45 ToRotationMatrixWrapper(const T& o) : object(o) {}
46 T object; member in struct:ToRotationMatrixWrapper
53 data = t.object.toRotationMatrix() * data;

Completed in 8680 milliseconds

<<11121314151617181920>>