/external/glide/library/src/main/java/com/bumptech/glide/signature/ |
StringSignature.java | 9 * A unique Signature that wraps a String. 30 StringSignature that = (StringSignature) o; local 32 return signature.equals(that.signature);
|
/external/glide/library/src/main/java/com/bumptech/glide/util/ |
MultiClassKey.java | 40 MultiClassKey that = (MultiClassKey) o; local 42 if (!first.equals(that.first)) { 45 if (!second.equals(that.second)) {
|
/external/guava/guava/src/com/google/common/base/ |
FunctionalEquivalence.java | 63 FunctionalEquivalence<?, ?> that = (FunctionalEquivalence<?, ?>) obj; local 64 return function.equals(that.function) 65 && resultEquivalence.equals(that.resultEquivalence);
|
PairwiseEquivalence.java | 62 PairwiseEquivalence<?> that = (PairwiseEquivalence<?>) object; local 63 return this.elementEquivalence.equals(that.elementEquivalence);
|
/external/guava/guava/src/com/google/common/collect/ |
AbstractMapEntry.java | 48 Entry<?, ?> that = (Entry<?, ?>) object; local 49 return Objects.equal(this.getKey(), that.getKey()) 50 && Objects.equal(this.getValue(), that.getValue());
|
ByFunctionOrdering.java | 30 * An ordering that orders elements by applying an order to the result of a 54 ByFunctionOrdering<?, ?> that = (ByFunctionOrdering<?, ?>) object; local 55 return this.function.equals(that.function) 56 && this.ordering.equals(that.ordering);
|
ComparatorOrdering.java | 46 ComparatorOrdering<?> that = (ComparatorOrdering<?>) object; local 47 return this.comparator.equals(that.comparator);
|
CompoundOrdering.java | 24 /** An ordering that tries several comparators in order. */ 56 CompoundOrdering<?> that = (CompoundOrdering<?>) object; local 57 return this.comparators.equals(that.comparators);
|
LexicographicalOrdering.java | 63 LexicographicalOrdering<?> that = (LexicographicalOrdering<?>) object; local 64 return this.elementOrder.equals(that.elementOrder);
|
NullsFirstOrdering.java | 25 /** An ordering that treats {@code null} as less than all other values. */ 66 NullsFirstOrdering<?> that = (NullsFirstOrdering<?>) object; local 67 return this.ordering.equals(that.ordering);
|
NullsLastOrdering.java | 25 /** An ordering that treats {@code null} as greater than all other values. */ 66 NullsLastOrdering<?> that = (NullsLastOrdering<?>) object; local 67 return this.ordering.equals(that.ordering);
|
ReverseOrdering.java | 28 /** An ordering that uses the reverse of a given order. */ 89 ReverseOrdering<?> that = (ReverseOrdering<?>) object; local 90 return this.forwardOrder.equals(that.forwardOrder);
|
/external/guava/guava/src/com/google/common/hash/ |
BloomFilter.java | 39 * with one-sided error: if it claims that an element is contained in it, this might be in error, 40 * but if it claims that an element is <i>not</i> contained in it, then this is definitely true. 47 * that {@linkplain #mightContain(Object)} will erroneously return {@code true} for an object that 54 * generated today may <i>not</i> be readable by a binary that was compiled 6 months ago). 56 * @param <T> the type of instances that the {@code BloomFilter} accepts 89 * (e.g. any kind of strategy that would depend on user input). 124 * Creates a new {@code BloomFilter} that's a copy of this instance. The new instance is equal to 152 * Puts an element into this {@code BloomFilter}. Ensures that subsequent invocations of 158 * has been added to the filter. Note that {@code put(t)} always returns th 248 BloomFilter<?> that = (BloomFilter<?>) object; local [all...] |
/external/guava/guava/src/com/google/common/reflect/ |
TypeParameter.java | 29 * Captures a free type variable that can be used in {@link TypeToken#where}. 58 TypeParameter<?> that = (TypeParameter<?>) o; local 59 return typeVariable.equals(that.typeVariable);
|
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Enums.java | 57 * Returns a converter that converts between strings and {@code enum} values of type 90 StringConverter<?> that = (StringConverter<?>) object; local 91 return this.enumClass.equals(that.enumClass);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
MinimalSet.java | 28 * A simplistic set which implements the bare minimum so that it can be used in 30 * allows null elements so that they can be used in the testers. 70 Set<?> that = (Set<?>) object; local 71 return (this.size() == that.size()) && this.containsAll(that);
|
UnhashableObject.java | 36 UnhashableObject that = (UnhashableObject) object; local 37 return this.value == that.value;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
LegacyComparable.java | 25 * A class that implements {@code Comparable} without generics, such as those 26 * found in libraries that support Java 1.4 and before. Our library needs to 52 LegacyComparable that = (LegacyComparable) object; local 53 return this.value.compareTo(that.value); 58 LegacyComparable that = (LegacyComparable) object; local 59 return this.value.equals(that.value);
|
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/ |
JpaTestEntity.java | 55 JpaTestEntity that = (JpaTestEntity) o; local 57 if (id != null ? !id.equals(that.id) : that.id != null) { 60 if (text != null ? !text.equals(that.text) : that.text != null) {
|
/external/jsilver/src/com/google/clearsilver/jsilver/precompiler/ |
PrecompiledTemplateMapKey.java | 50 PrecompiledTemplateMapKey that = (PrecompiledTemplateMapKey) o; local 52 return templateName.equals(that.templateName) && (escapeMode == that.escapeMode);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
ProfileLevelIndicationDescriptor.java | 57 ProfileLevelIndicationDescriptor that = (ProfileLevelIndicationDescriptor) o;
local 59 if (profileLevelIndicationIndex != that.profileLevelIndicationIndex) {
|
/external/skia/src/gpu/batches/ |
GrDrawPathBatch.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 56 GrDrawPathRangeBatch* that = t->cast<GrDrawPathRangeBatch>(); local 57 if (this->fPathRange.get() != that->fPathRange.get() || 58 this->transformType() != that->transformType() || 59 this->fScale != that->fScale || 60 this->color() != that->color() || 61 !this->viewMatrix().cheapEqualTo(that->viewMatrix())) { 64 if (!GrPipeline::AreEqual(*this->pipeline(), *that->pipeline(), false)) { 69 if (this->fDraws.head()->fX != that->fDraws.head()->fX || 70 this->fDraws.head()->fY != that->fDraws.head()->fY) [all...] |
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
Precomposer.java | 1036 long that; local 1040 that = precompositions[mid][1] << UNICODE_SHIFT | precompositions[mid][2]; 1041 if (that < sought) 1043 else if (that > sought)
|
/frameworks/base/packages/Osu/src/com/android/anqp/ |
I18Name.java | 65 I18Name that = (I18Name) thatObject; local 66 return mLanguage.equals(that.mLanguage) && mText.equals(that.mText);
|
/frameworks/opt/bitmap/src/com/android/bitmap/ |
ResourceRequestKey.java | 74 ResourceRequestKey that = (ResourceRequestKey) o; local 76 if (mResId != that.mResId) {
|