HomeSort by relevance Sort by last modified time
    Searched refs:Objects (Results 51 - 75 of 234) sorted by null

1 23 4 5 6 7 8 910

  /external/guava/guava/src/com/google/common/collect/
ForwardingCollection.java 21 import com.google.common.base.Objects;
172 if (Objects.equal(iterator.next(), object)) {
GenericMapMaker.java 24 import com.google.common.base.Objects;
146 return (RemovalListener<K, V>) Objects.firstNonNull(removalListener, NullListener.INSTANCE);
AbstractMultiset.java 22 import com.google.common.base.Objects;
70 if (Objects.equal(entry.getElement(), element)) {
ForwardingMap.java 21 import com.google.common.base.Objects;
44 * Objects#equal} to test equality for both keys and values. This may not be
164 if (Objects.equal(entry.getKey(), key)) {
ForwardingMultiset.java 21 import com.google.common.base.Objects;
138 if (Objects.equal(entry.getElement(), object)) {
GeneralRange.java 28 import com.google.common.base.Objects;
226 && Objects.equal(lowerEndpoint, r.lowerEndpoint)
227 && Objects.equal(upperEndpoint, r.upperEndpoint);
234 return Objects.hashCode(comparator, lowerEndpoint, lowerBoundType, upperEndpoint,
Table.java 21 import com.google.common.base.Objects;
290 * Objects#hashCode}{@code (e.getRowKey(), e.getColumnKey(), e.getValue())}.
  /external/guava/guava-tests/test/com/google/common/collect/
SingletonImmutableTableTest.java 21 import com.google.common.base.Objects;
34 assertEquals(Objects.hashCode('a', 1, "blah"), testTable.hashCode());
BstTesting.java 24 import com.google.common.base.Objects;
53 && Objects.equal(childOrNull(LEFT), node.childOrNull(LEFT))
54 && Objects.equal(childOrNull(RIGHT), node.childOrNull(RIGHT));
61 return Objects.hashCode(getKey(), childOrNull(LEFT), childOrNull(RIGHT));
  /frameworks/base/core/java/android/hardware/display/
WifiDisplay.java 22 import libcore.util.Objects;
143 && Objects.equal(mDeviceAlias, other.mDeviceAlias);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
AttachmentProgressDialogFragment.java 29 import com.google.common.base.Objects;
119 && Objects.equal(attachment.getIdentifierUri(), mAttachment.getIdentifierUri());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Locale.java 25 import com.google.common.base.Objects;
164 return Objects.toStringHelper(this).omitNullValues()
  /development/tools/idegen/src/com/android/idegen/
StandardModule.java 19 import com.google.common.base.Objects;
202 return Objects.hashCode(getName());
214 return Objects.equal(getName(), other.getName());
219 return Objects.toStringHelper(this)
Module.java 19 import com.google.common.base.Objects;
204 return Objects.toStringHelper(Module.class)
  /external/guava/guava/src/com/google/common/base/
FunctionalEquivalence.java 71 return Objects.hashCode(function, resultEquivalence);
Equivalence.java 48 * Returns {@code true} if the given objects are considered equivalent.
120 * non-null objects {@code x} and {@code y}, {@code
281 && Objects.equal(target, that.target);
287 return Objects.hashCode(equivalence, target);
Objects.java 34 public final class Objects {
35 private Objects() {}
38 * Determines whether two possibly-null objects are equal. Returns:
47 * <p>This assumes that any non-null objects passed to this function conform
63 * return Objects.hashCode(getX(), getY(), getZ());
69 public static int hashCode(@Nullable Object... objects) {
70 return Arrays.hashCode(objects);
79 * Objects.toStringHelper(this)
83 * Objects.toStringHelper(this)
88 * Objects.toStringHelper("MyObject"
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
RootInfo.java 38 import java.util.Objects;
218 return Objects.equals(authority, root.authority) && Objects.equals(rootId, root.rootId);
226 return Objects.hash(authority, rootId);
  /external/guava/guava/src/com/google/common/cache/
CacheBuilder.java 19 import static com.google.common.base.Objects.firstNonNull;
30 import com.google.common.base.Objects;
435 return (Weigher<K1, V1>) Objects.firstNonNull(weigher, OneWeigher.INSTANCE);
507 * {@link SoftReference} (by default, strong references are used). Softly-referenced objects will
708 return (RemovalListener<K1, V1>) Objects.firstNonNull(removalListener, NullListener.INSTANCE);
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
DynamicSentinelStrategy.java 27 import com.google.common.base.Objects;
108 return Objects.toStringHelper(this).addValue(uniqueStringFinder).toString();
  /libcore/luni/src/main/java/java/util/logging/
Level.java 29 import libcore.util.Objects;
32 * {@code Level} objects are used to indicate the level of logging. There are a
264 if (Objects.equal(resourceBundleName, level.resourceBundleName)) {
316 * Compares two {@code Level} objects for equality. They are considered to
  /libcore/luni/src/main/java/libcore/icu/
LocaleData.java 23 import libcore.util.Objects;
141 return Objects.toString(this);
  /packages/apps/InCallUI/src/com/android/incallui/
ProximitySensor.java 27 import com.google.common.base.Objects;
224 Log.i(this, Objects.toStringHelper(this)
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
ConversationInfo.java 22 import com.google.common.base.Objects;
133 return Objects.hashCode(messageCount, draftCount, messageInfos, firstSnippet,
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
arrayobj.c 72 _mesa_HashLookup(ctx->Array.Objects, id);
78 * to any buffer objects (VBOs).
263 _mesa_HashInsert(ctx->Array.Objects, obj->Name, obj);
277 _mesa_HashRemove(ctx->Array.Objects, obj->Name);
420 * pointers in the old and new objects. The only arrays that are "dirty" are
432 * Delete a set of array objects.
434 * \param n Number of array objects to delete.
498 first = _mesa_HashFindFreeKeyBlock(ctx->Array.Objects, n);
500 /* Allocate new, empty array objects and return identifiers */

Completed in 4821 milliseconds

1 23 4 5 6 7 8 910