Searched defs:object (Results 101 - 125 of 1059) sorted by relevance

1234567891011>>

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableCollection.java42 @Override public boolean contains(@Nullable Object object) { argument
43 return object != null && delegate.contains(object);
H A DImmutableMapKeySet.java50 public boolean contains(@Nullable Object object) { argument
51 return map.containsKey(object);
H A DImmutableMapValues.java50 public boolean contains(@Nullable Object object) { argument
51 return object != null && Iterators.contains(iterator(), object);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalSet.java68 @Override public boolean equals(Object object) { argument
69 if (object instanceof Set) {
70 Set<?> that = (Set<?>) object;
H A DUnhashableObject.java22 * An unhashable object to be used in testing as values in our collections.
34 @Override public boolean equals(Object object) { argument
35 if (object instanceof UnhashableObject) {
36 UnhashableObject that = (UnhashableObject) object;
/external/guava/guava-tests/test/com/google/common/collect/
H A DLegacyComparable.java50 public int compareTo(Object object) { argument
51 // This method is spec'd to throw CCE if object is of the wrong type
52 LegacyComparable that = (LegacyComparable) object;
56 @Override public boolean equals(Object object) { argument
57 if (object instanceof LegacyComparable) {
58 LegacyComparable that = (LegacyComparable) object;
H A DMultimapBuilderTest.java93 private static void reserializeAndAssert(Object object) throws Exception { argument
94 Object copy = reserialize(object);
95 assertEquals(object, copy);
96 assertEquals(object.getClass(), copy.getClass());
100 private static Object reserialize(Object object) throws Exception { argument
102 new ObjectOutputStream(bytes).writeObject(object);
/external/guice/core/src/com/google/inject/
H A DScopes.java43 * Injector obtains an instance of an object with "no scope", it injects this
175 * Returns true if the object is a proxy for a circular dependency,
184 public static boolean isCircularProxy(Object object) { argument
185 return object instanceof CircularDependencyProxy;
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
H A DIsSame.java9 * Is the value the same object as another value?
12 private final T object; field in class:IsSame
14 public IsSame(T object) { argument
15 this.object = object;
20 return arg == object;
26 .appendValue(object)
31 * Creates a matcher that matches only when the examined object is the same instance as
32 * the specified target object.
42 * Creates a matcher that matches only when the examined object i
[all...]
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
H A DIsCompatibleType.java1 package org.hamcrest.object;
H A DIsEventFrom.java1 package org.hamcrest.object;
11 * Tests if the value is an event announced by a specific object.
50 * Creates a matcher of {@link java.util.EventObject} that matches any object
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/object/
H A DHasToStringTest.java1 package org.hamcrest.object;
8 import static org.hamcrest.object.HasToString.hasToString;
H A DIsCompatibleTypeTest.java1 package org.hamcrest.object;
7 import static org.hamcrest.object.IsCompatibleType.typeCompatibleWith;
H A DMatchesPatternTest.java1 package org.hamcrest.object;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DEquator.java26 * @param object
27 * @return a hash code for the object
29 public int getHashCode(Object object); argument
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DEquator.java25 * @param object
26 * @return a hash code for the object
28 public int getHashCode(Object object); argument
/external/junit/src/main/java/org/junit/runner/manipulation/
H A DSorter.java38 public void apply(Object object) { argument
39 if (object instanceof Sortable) {
40 Sortable sortable = (Sortable) object;
/external/junit-params/src/test/java/junitparams/
H A DObjectStringificationTest.java71 public void shouldCreateParameterObjectsOnce(Object object) { argument
72 assertThat(object).isInstanceOf(A.class);
/external/libchrome/base/
H A Dsequenced_task_runner_helpers.h39 static void DoDelete(const void* object) { argument
40 delete reinterpret_cast<const T*>(object);
51 static void DoRelease(const void* object) { argument
52 reinterpret_cast<const T*>(object)->Release();
63 // pass/ an object of the wrong type to delete. Instead, we force
72 // void* object)
75 // base::Closure from (function, object) and return the result of
84 const T* object) {
86 from_here, &DeleteHelper<T>::DoDelete, object);
100 const T* object) {
81 DeleteViaSequencedTaskRunner( SequencedTaskRunnerType* sequenced_task_runner, const tracked_objects::Location& from_here, const T* object) argument
97 ReleaseViaSequencedTaskRunner( SequencedTaskRunnerType* sequenced_task_runner, const tracked_objects::Location& from_here, const T* object) argument
[all...]
/external/libchrome/base/win/
H A Dscoped_gdi_object.h20 static void Free(T object) { DeleteObject(object); } argument
/external/libjpeg-turbo/
H A Djmemnobs.c44 jpeg_free_small (j_common_ptr cinfo, void *object, size_t sizeofobject) argument
46 free(object);
61 jpeg_free_large (j_common_ptr cinfo, void *object, size_t sizeofobject) argument
63 free(object);
/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dmap_data_internal.h36 const Map_Data* object = static_cast<const Map_Data*>(data); local
37 if (object->header_.num_bytes != sizeof(Map_Data) ||
38 object->header_.version != 0) {
45 object->keys, "null key array in map struct", validation_context) ||
46 !ValidateContainer(object->keys, validation_context,
51 if (!ValidatePointerNonNullable(object->values,
54 !ValidateContainer(object->values, validation_context,
59 if (object->keys.Get()->size() != object->values.Get()->size()) {
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DDataHeader.java27 * The size of the object owning this header.
32 * Number of element (for an array) or version (for a struct) of the object owning this
62 public boolean equals(Object object) { argument
63 if (object == this) return true;
64 if (object == null) return false;
65 if (getClass() != object.getClass()) return false;
67 DataHeader other = (DataHeader) object;
/external/libunwind/include/
H A Dmempool.h59 /* The mempool structure should be treated as an opaque object. It's
64 size_t obj_size; /* object size (rounded up for alignment) */
68 struct object struct in struct:mempool
70 struct object *next;
80 /* Initialize POOL for an object size of OBJECT_SIZE bytes. RESERVE
87 extern void mempool_free (struct mempool *pool, void *object);
/external/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h26 namespace object { namespace in namespace:llvm
36 /// This method is called after an object has been loaded into memory but
37 /// before relocations are applied to the loaded sections. The object load
39 /// object that is being finalized. In that case, the object about which
45 /// newly loaded object.
47 const object::ObjectFile &) {}

Completed in 571 milliseconds

1234567891011>>