HomeSort by relevance Sort by last modified time
    Searched defs:that (Results 26 - 50 of 1889) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
StopMeasurementLogMessage.java 26 * A message signaling that the timing interval has ended in the worker.
54 StopMeasurementLogMessage that = (StopMeasurementLogMessage) obj; local
55 return this.measurements.equals(that.measurements);
VmPropertiesLogMessage.java 62 VmPropertiesLogMessage that = (VmPropertiesLogMessage) obj; local
63 return this.properties.equals(that.properties);
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Run.java 69 Run that = (Run) obj; local
70 return this.id.equals(that.id)
71 && this.label.equals(that.label)
72 && this.startTime.equals(that.startTime);
Value.java 66 Value that = (Value) obj; local
67 return this.magnitude == that.magnitude
68 && this.unit.equals(that.unit);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
Experiment.java 62 Experiment that = (Experiment) object; local
63 return this.instrumentation.equals(that.instrumentation)
64 && this.vm.equals(that.vm)
65 && this.userParameters.equals(that.userParameters);
VirtualMachine.java 37 VirtualMachine that = (VirtualMachine) object; local
38 return this.name.equals(that.name)
39 && this.config.equals(that.config);
  /external/clang/test/CXX/special/class.init/class.base.init/
p9-0x.cpp 12 T *that = this; member in struct:S::T
  /external/clang/test/Index/
complete-access-checks.cpp 32 Z that; local
34 that.
  /external/clang/test/PCH/
cxx-member-init.cpp 13 S *that = this; member in struct:S
  /external/dagger2/producers/src/main/java/dagger/producers/
Produced.java 26 * An interface that represents the result of a {@linkplain Producer production} of type {@code T},
27 * or an exception that was thrown during that production. For any type {@code T} that can be
28 * injected, you can also inject {@code Produced<T>}, which enables handling of any exceptions that
93 Successful<?> that = (Successful<?>) o; local
94 return Objects.equal(this.value, that.value);
120 Failed<?> that = (Failed<?>) o; local
121 return this.throwable.equals(that.throwable);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
OriginalKey.java 30 OriginalKey that = (OriginalKey) o; local
32 if (!id.equals(that.id)) {
35 if (!signature.equals(that.signature)) {
  /external/glide/library/src/main/java/com/bumptech/glide/signature/
MediaStoreSignature.java 10 * A unique signature based on metadata data from the media store that detects common changes to media store files like
45 MediaStoreSignature that = (MediaStoreSignature) o; local
47 if (dateModified != that.dateModified) {
50 if (orientation != that.orientation) {
53 if (mimeType != null ? !mimeType.equals(that.mimeType) : that.mimeType != null) {
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...]

Completed in 487 milliseconds

12 3 4 5 6 7 8 91011>>