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

1 23 4 5 6

  /external/guava/guava/src/com/google/common/base/
Functions.java 165 return map.equals(that.map) && Objects.equal(defaultValue, that.defaultValue);
171 return Objects.hashCode(map, defaultValue);
294 return Objects.equal(value, that.value);
Predicates.java 578 return Objects.hashCode(pattern.pattern(), pattern.flags());
587 return Objects.equal(pattern.pattern(), that.pattern.pattern())
588 && Objects.equal(pattern.flags(), that.pattern.flags());
594 return Objects.toStringHelper(this)
  /frameworks/base/services/java/com/android/server/input/
PersistentDataStore.java 45 import libcore.util.Objects;
286 if (Objects.equal(mCurrentKeyboardLayout, keyboardLayout)) {
325 if (Objects.equal(mCurrentKeyboardLayout, removedKeyboardLayout)) {
  /external/guava/guava/src/com/google/common/collect/
AbstractBiMap.java 24 import com.google.common.base.Objects;
106 if (containedKey && Objects.equal(value, get(key))) {
326 if (Objects.equal(value, getValue())) {
332 checkState(Objects.equal(value, get(getKey())),
MapMaker.java 17 import static com.google.common.base.Objects.firstNonNull;
28 import com.google.common.base.Objects;
315 * {@link SoftReference} (by default, strong references are used). Softly-referenced objects will
385 * {@link SoftReference} (by default, strong references are used). Softly-referenced objects will
679 Objects.ToStringHelper s = Objects.toStringHelper(this);
    [all...]
Maps.java 29 import com.google.common.base.Objects;
451 return Objects.hashCode(entriesOnlyOnLeft(), entriesOnlyOnRight(),
502 return Objects.equal(this.left, that.leftValue())
503 && Objects.equal(this.right, that.rightValue());
509 return Objects.hashCode(left, right);
555 if (Objects.equal(leftValue, rightValue)) {
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/model/
TestHoverTank.java 89 BloomFilter bf = new BloomFilter(BloomFilter.GlowMode.Objects);
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 28 import com.google.common.base.Objects;
550 return Objects.toStringHelper(this).add("name", name).toString();
  /external/guava/guava-tests/test/com/google/common/collect/
FauxveridesTest.java 27 import com.google.common.base.Objects;
193 return Objects.hashCode(name, parameterTypes, typeSignature);
GeneralRangeTest.java 28 import com.google.common.base.Objects;
84 assertEquals(Objects.equal(i, j), range.contains(j));
  /external/guava/guava-tests/test/com/google/common/testing/
EquivalenceTesterTest.java 23 import com.google.common.base.Objects;
198 return Objects.toStringHelper("TestObject")
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
BloomFilter.java 49 * BloomFilter is used to make objects in the scene have a glow effect.<br>
50 * There are 2 mode : Scene and Objects.<br>
52 * Object mode make objects glow according to their material's glowMap or their GlowColor<br>
60 * GlowMode specifies if the glow will be applied to the whole scene,or to objects that have aglow color or a glow map
69 * Apply bloom only to objects that have a glow map or a glow color.
71 Objects,
73 * Apply bloom to both bright parts of the scene and objects with glow map.
138 extractMat.setBoolean("Extract", glowMode != GlowMode.Objects);
  /frameworks/base/keystore/java/android/security/
KeyChain.java 42 import libcore.util.Objects;
349 if (Objects.equal(cert.getSubjectX500Principal(), cert.getIssuerX500Principal())) {
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DerOutputStream.java 25 import libcore.util.Objects;
171 if (Objects.equal(sequence.DEFAULT[i], values[i])) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 21 import libcore.util.Objects;
261 return "*".equals(pattern) || Objects.equal(pattern, s);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListAdapter.java 24 import com.android.internal.util.Objects;
139 Objects.equal(dataSet, previousGroupDataSet)) {
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountWithDataSet.java 19 import com.android.internal.util.Objects;
120 && Objects.equal(((AccountWithDataSet) o).dataSet, dataSet);
AccountTypeManager.java 23 import com.android.internal.util.Objects;
244 if (Objects.equal(a.name, b.name) && Objects.equal(a.type, b.type)
245 && Objects.equal(aDataSet, bDataSet)) {
    [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 439 /// All fixed objects should be created before other objects are created for
440 /// efficiency. By default, fixed objects are immutable. This returns an
445 assert(Size != 0 && "Cannot allocate zero size fixed stack objects!");
452 Objects.insert(Objects.begin(), StackObject(Size, Align, SPOffset, Immutable,
490 if (Objects.empty()) return;
495 OS << "Frame Objects:\n";
497 for (unsigned i = 0, e = Objects.size(); i != e; ++i) {
498 const StackObject &SO = Objects[i]
    [all...]
  /libcore/luni/src/main/java/java/util/
HashMap.java 26 import libcore.util.Objects;
755 return Objects.equal(e.getKey(), key)
756 && Objects.equal(e.getValue(), value);
838 return e != null && Objects.equal(value, e.value);
846 return Objects.equal(value, e.value);
859 if (e == null || !Objects.equal(value, e.value)) {
875 if (!Objects.equal(value, e.value)) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
GroupMembershipView.java 27 import com.android.internal.util.Objects;
120 // are CheckedTextView objects
229 && Objects.equal(dataSet, mDataSet)) {
299 && Objects.equal(dataSet, mDataSet)) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Maps.java 28 import com.google.common.base.Objects;
448 return Objects.hashCode(entriesOnlyOnLeft(), entriesOnlyOnRight(),
499 return Objects.equal(this.left, that.leftValue())
500 && Objects.equal(this.right, that.rightValue());
506 return Objects.hashCode(left, right);
552 if (Objects.equal(leftValue, rightValue)) {
    [all...]
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 27 import libcore.util.Objects;
681 && Objects.equal(path, that.path);
  /libcore/luni/src/main/java/libcore/net/http/
ResponseHeaders.java 29 import libcore.util.Objects;
370 if (!Objects.equal(cachedRequest.get(field), newRequest.get(field))) {
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
ExternalAccountTypeTest.java 38 import libcore.util.Objects;
215 if (!Objects.equal(actual, expected)) {

Completed in 708 milliseconds

1 23 4 5 6