Searched refs:Objects (Results 1 - 25 of 90) sorted by relevance

1234

/external/guava/guava-tests/test/com/google/common/base/
H A DObjectsTest.java26 * Tests for {@link Objects}.
33 assertTrue(Objects.equal(1, 1));
34 assertTrue(Objects.equal(null, null));
39 assertTrue(Objects.equal(s1, s2));
41 assertFalse(Objects.equal(s1, null));
42 assertFalse(Objects.equal(null, s1));
43 assertFalse(Objects.equal("foo", "bar"));
44 assertFalse(Objects.equal("1", 1));
48 int h1 = Objects.hashCode(1, "two", 3.0);
49 int h2 = Objects
[all...]
H A DToStringHelperTest.java29 * Tests for {@link Objects#toStringHelper(Object)}.
38 String toTest = Objects.toStringHelper(this).toString();
43 String toTest = Objects.toStringHelper(this).toString();
49 String toTest = Objects.toStringHelper(new TestClass()).toString();
54 String toTest = Objects.toStringHelper(new TestClass()).toString();
60 String toTest = Objects.toStringHelper(new Object() {}).toString();
65 String toTest = Objects.toStringHelper(new Object() {}).toString();
71 String toTest = Objects.toStringHelper(TestClass.class).toString();
76 String toTest = Objects.toStringHelper(TestClass.class).toString();
81 String toTest = Objects
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h120 /// Objects - The list of stack objects allocated...
122 std::vector<StackObject> Objects; member in class:llvm::MachineFrameInfo
126 /// Objects list, this is also the index to the 0th object in the list.
152 /// offsets for all of the fixed size objects, updating the Objects list
258 bool hasStackObjects() const { return !Objects.empty(); }
307 int getObjectIndexEnd() const { return (int)Objects.size()-NumFixedObjects; }
314 unsigned getNumObjects() const { return Objects.size(); }
319 Objects[ObjectIndex + NumFixedObjects].PreAllocated = true;
362 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
364 return Objects[ObjectId
[all...]
/external/llvm/lib/IR/
H A DLeakDetector.cpp25 static ManagedStatic<LeakDetectorImpl<void> > Objects; variable
28 Objects->clear();
34 Objects->addGarbage(Object);
44 Objects->removeGarbage(Object);
57 Objects->setName("GENERIC");
61 if (Objects->hasGarbage(Message) |
/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableTable.java22 import com.google.common.base.Objects;
76 return Objects.equal(this.singleColumnKey, columnKey);
80 return Objects.equal(this.singleRowKey, rowKey);
84 return Objects.equal(this.singleValue, value);
126 return Objects.equal(this.singleRowKey, thatCell.getRowKey()) &&
127 Objects.equal(this.singleColumnKey, thatCell.getColumnKey()) &&
128 Objects.equal(this.singleValue, thatCell.getValue());
135 return Objects.hashCode(singleRowKey, singleColumnKey, singleValue);
H A DAbstractMapEntry.java20 import com.google.common.base.Objects;
49 return Objects.equal(this.getKey(), that.getKey())
50 && Objects.equal(this.getValue(), that.getValue());
H A DForwardingMapEntry.java21 import com.google.common.base.Objects;
42 * Objects#equal} to test equality for both keys and values. This may not be
98 return Objects.equal(this.getKey(), that.getKey())
99 && Objects.equal(this.getValue(), that.getValue());
H A DByFunctionOrdering.java23 import com.google.common.base.Objects;
62 return Objects.hashCode(function, ordering);
H A DForwardingCollection.java21 import com.google.common.base.Objects;
172 if (Objects.equal(iterator.next(), object)) {
H A DGenericMapMaker.java24 import com.google.common.base.Objects;
146 return (RemovalListener<K, V>) Objects.firstNonNull(removalListener, NullListener.INSTANCE);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
H A DPair.java13 import com.google.common.base.Objects;
49 return Objects.equal(getLeft(), other.getLeft())
50 && Objects.equal(getRight(), other.getRight());
/external/guava/guava/src/com/google/common/cache/
H A DRemovalNotification.java22 import com.google.common.base.Objects;
81 return Objects.equal(this.getKey(), that.getKey())
82 && Objects.equal(this.getValue(), that.getValue());
H A DCacheStats.java23 import com.google.common.base.Objects;
240 return Objects.hashCode(hitCount, missCount, loadSuccessCount, loadExceptionCount,
260 return Objects.toStringHelper(this)
H A DCacheBuilder.java19 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);
708 return (RemovalListener<K1, V1>) Objects.firstNonNull(removalListener, NullListener.INSTANCE);
784 Objects.ToStringHelper s = Objects.toStringHelper(this);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DEnumerationValuesPropertyEditor.java13 import com.google.common.base.Objects;
64 if (Objects.equal(m_values[i], value)) {
82 if (Objects.equal(m_values[i], value)) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractTableReadTest.java23 import com.google.common.base.Objects;
144 int expected = Objects.hashCode("foo", 1, 'a')
145 + Objects.hashCode("bar", 1, 'b')
146 + Objects.hashCode("foo", 3, 'c');
H A DSingletonImmutableTableTest.java21 import com.google.common.base.Objects;
34 assertEquals(Objects.hashCode('a', 1, "blah"), testTable.hashCode());
H A DBstTesting.java24 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));
/external/guava/guava-testlib/src/com/google/common/testing/
H A DEqualsTester.java25 import com.google.common.base.Objects;
111 assertTrue("$ITEM must be unequal to $UNRELATED", !Objects.equal(item, unrelated));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
H A DBaseExceptionHandler.java34 import com.google.common.base.Objects;
69 return Objects.equal(getExceptionType(), other.getExceptionType()) &&
/external/guava/guava/src/com/google/common/net/
H A DHostAndPort.java24 import com.google.common.base.Objects;
234 return Objects.equal(this.host, that.host)
243 return Objects.hashCode(host, port, hasBracketlessColons);
/external/guava/guava/src/com/google/common/base/
H A DFunctionalEquivalence.java71 return Objects.hashCode(function, resultEquivalence);
H A DEquivalence.java281 && Objects.equal(target, that.target);
287 return Objects.hashCode(equivalence, target);
H A DObjects.java34 public final class Objects { class
35 private Objects() {} method in class:Objects
63 * return Objects.hashCode(getX(), getY(), getZ());
79 * Objects.toStringHelper(this)
83 * Objects.toStringHelper(this)
88 * Objects.toStringHelper("MyObject")
93 * Objects.toStringHelper(this)
111 * {@link Objects#toStringHelper(Object)}, but using the name of {@code clazz}
125 * {@link Objects#toStringHelper(Object)}, but using {@code className} instead
178 * Support class for {@link Objects#toStringHelpe
[all...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dbool.pxd5 # 7.2.2 Boolean Objects

Completed in 334 milliseconds

1234