HomeSort by relevance Sort by last modified time
    Searched refs:Objects (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 52 /// of abstract objects on the stack frame.
55 /// objects requested clients. These identifiers are negative integers for
56 /// fixed stack objects (such as arguments passed on the stack) or nonnegative
57 /// for objects that may be reordered. Instructions which refer to stack
58 /// objects use a special MO_FrameIndex operand to represent these frame
66 /// variable sized stack objects, it is safe to decide whether there will be
67 /// any variable sized objects before all stack objects are known (for
69 /// objects).
94 // default, fixed objects are immutable unless marked otherwise
    [all...]
  /libcore/luni/src/main/java/libcore/util/
Objects.java 19 public final class Objects {
20 private Objects() {}
23 * Returns true if two possibly-null objects are equal.
  /external/llvm/lib/VMCore/
LeakDetector.cpp 25 static ManagedStatic<LeakDetectorImpl<void> > Objects;
28 Objects->clear();
34 Objects->addGarbage(Object);
44 Objects->removeGarbage(Object);
57 Objects->setName("GENERIC");
61 if (Objects->hasGarbage(Message) |
  /external/guava/src/com/google/common/collect/
AbstractMapEntry.java 20 import com.google.common.base.Objects;
46 return Objects.equal(this.getKey(), that.getKey())
47 && Objects.equal(this.getValue(), that.getValue());
ByFunctionOrdering.java 21 import com.google.common.base.Objects;
61 return Objects.hashCode(function, ordering);
AbstractBiMap.java 20 import com.google.common.base.Objects;
103 if (containedKey && Objects.equal(value, get(key))) {
311 if (Objects.equal(value, getValue())) {
317 checkState(Objects.equal(value, get(getKey())),
AbstractMultiset.java 20 import com.google.common.base.Objects;
122 if (Objects.equal(entry.getElement(), element)) {
  /frameworks/base/core/java/com/android/internal/util/
Objects.java 24 public class Objects {
27 * Determines whether two possibly-null objects are equal. Returns:
36 * <p>This assumes that any non-null objects passed to this function conform
52 * return Objects.hashCode(getX(), getY(), getZ());
58 public static int hashCode(Object... objects) {
59 return Arrays.hashCode(objects);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AccountWithDataSet.java 19 import com.android.internal.util.Objects;
51 return Objects.equal(mAccountName, other.getAccountName())
52 && Objects.equal(mAccountType, other.getAccountType())
53 && Objects.equal(mDataSet, other.getDataSet());
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountTypeWithDataSet.java 19 import com.google.common.base.Objects;
85 return Objects.equal(accountType, other.accountType)
86 && Objects.equal(dataSet, other.dataSet);
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
MockAccountTypeManager.java 30 import libcore.util.Objects;
48 if (Objects.equal(accountTypeWithDataSet.accountType, type.accountType)
49 && Objects.equal(accountTypeWithDataSet.dataSet, type.dataSet)) {
  /frameworks/base/core/java/android/net/
NetworkIdentity.java 25 import com.android.internal.util.Objects;
48 return Objects.hashCode(mType, mSubType, mSubscriberId);
56 && Objects.equal(mSubscriberId, ident.mSubscriberId)
NetworkPolicy.java 24 import com.android.internal.util.Objects;
102 return Objects.hashCode(template, cycleDay, warningBytes, limitBytes, lastSnooze);
109 return Objects.equal(template, other.template) && cycleDay == other.cycleDay
NetworkTemplate.java 34 import com.android.internal.util.Objects;
141 return Objects.hashCode(mMatchRule, mSubscriberId);
149 && Objects.equal(mSubscriberId, other.mSubscriberId);
193 && Objects.equal(mSubscriberId, ident.mSubscriberId));
  /external/guava/src/com/google/common/base/
Objects.java 35 public final class Objects {
36 private Objects() {}
39 * Determines whether two possibly-null objects are equal. Returns:
48 * <p>This assumes that any non-null objects passed to this function conform
64 * return Objects.hashCode(getX(), getY(), getZ());
70 public static int hashCode(Object... objects) {
71 return Arrays.hashCode(objects);
82 * return Objects.toStringHelper(this)
100 * Support class for {@link Objects#toStringHelper}.
110 * Use {@link Objects#toStringHelper(Object)} to create an instance
    [all...]
Functions.java 155 && Objects.equal(defaultValue, that.defaultValue);
160 return Objects.hashCode(map, defaultValue);
274 return Objects.equal(value, that.value);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
SearchParams.java 23 import com.google.common.base.Objects;
76 return Objects.hashCode(mMailboxId, mFilter, mOffset);
  /libcore/luni/src/main/java/java/beans/
PropertyChangeSupport.java 31 import libcore.util.Objects;
152 if (!Objects.equal(aName, bName)) {
157 return aName == null && Objects.equal(a, b);
180 if (p instanceof PropertyChangeListenerProxy && Objects.equal(
275 if (!(p instanceof PropertyChangeListenerProxy) || Objects.equal(
391 if (!Objects.equal(proxy.getPropertyName(), propertyName)) {
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 22 import libcore.util.Objects;
306 && Objects.equal(a.getRef(), b.getRef())
307 && Objects.equal(a.getQuery(), b.getQuery());
355 return Objects.equal(a.getProtocol(), b.getProtocol())
358 && Objects.equal(a.getFile(), b.getFile());
  /libcore/luni/src/main/java/java/security/
Identity.java 23 import libcore.util.Objects;
174 * To be equal, two {@code Identity} objects need to have the same name and
179 * @return {@code true} if the {@code Identity} objects are equal, {@code
286 * otherwise. {@code Identity} objects are considered equal, if they have
304 if (Objects.equal(name, i.name) && (Objects.equal(scope, i.scope))) {
  /packages/apps/Email/src/com/android/email/
MessageListContext.java 28 import com.google.common.base.Objects;
143 && Objects.equal(mSearchParams, om.mSearchParams);
148 return Objects.hashCode(mAccountId, mMailboxId, mSearchParams);
  /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
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
QuickResponse.java 22 import com.google.common.base.Objects;
180 return Objects.hashCode(mId, mText, mAccountKey);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 21 import libcore.util.Objects;
62 if (Objects.equal(name, attr.getNodeName())) {
73 if (Objects.equal(namespaceURI, attr.getNamespaceURI())
74 && Objects.equal(localName, attr.getLocalName())) {
  /frameworks/base/keystore/java/android/security/
KeyChain.java 41 import libcore.util.Objects;
333 if (Objects.equal(cert.getSubjectX500Principal(), cert.getIssuerX500Principal())) {

Completed in 437 milliseconds

1 2 3