HomeSort by relevance Sort by last modified time
    Searched defs:that (Results 1 - 25 of 1208) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dagger2/producers/src/main/java/dagger/producers/monitoring/
ProducerToken.java 22 /** A token that represents an individual {@linkplain Produces producer method}. */
31 * Creates a token for a class token that represents the generated factory for a producer method.
46 ProducerToken that = (ProducerToken) o; local
47 return this.classToken.equals(that.classToken);
  /libcore/luni/src/main/java/libcore/reflect/
GenericArrayTypeImpl.java 43 GenericArrayType that = (GenericArrayType) o; local
44 return Objects.equals(getGenericComponentType(), that.getGenericComponentType());
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/model/
MutableMediaMetadata.java 23 * Holder class that encapsulates a MediaMetadata and allows the actual metadata to be modified
45 MutableMediaMetadata that = (MutableMediaMetadata) o; local
47 return TextUtils.equals(trackId, that.trackId);
  /developers/build/prebuilts/gradle/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 22 * A class that models a GPS location point with additional information about the time that the data
48 LocationEntry that = (LocationEntry) o; local
50 if (calendar.getTimeInMillis() != that.calendar.getTimeInMillis()) {
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/model/
MutableMediaMetadata.java 23 * Holder class that encapsulates a MediaMetadata and allows the actual metadata to be modified
45 MutableMediaMetadata that = (MutableMediaMetadata) o; local
47 return TextUtils.equals(trackId, that.trackId);
  /developers/samples/android/wearable/wear/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 22 * A class that models a GPS location point with additional information about the time that the data
48 LocationEntry that = (LocationEntry) o; local
50 if (calendar.getTimeInMillis() != that.calendar.getTimeInMillis()) {
  /development/samples/Home/src/com/example/android/home/
ApplicationInfo.java 44 * When set to true, indicates that the icon has been resized.
70 ApplicationInfo that = (ApplicationInfo) o; local
71 return title.equals(that.title) &&
73 that.intent.getComponent().getClassName());
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/model/
MutableMediaMetadata.java 23 * Holder class that encapsulates a MediaMetadata and allows the actual metadata to be modified
45 MutableMediaMetadata that = (MutableMediaMetadata) o; local
47 return TextUtils.equals(trackId, that.trackId);
  /development/samples/browseable/SpeedTracker/Shared/src/com.example.android.wearable.speedtracker.common/
LocationEntry.java 22 * A class that models a GPS location point with additional information about the time that the data
48 LocationEntry that = (LocationEntry) o; local
50 if (calendar.getTimeInMillis() != that.calendar.getTimeInMillis()) {
  /external/apache-http/src/org/apache/http/auth/
BasicUserPrincipal.java 77 BasicUserPrincipal that = (BasicUserPrincipal) o; local
78 if (LangUtils.equals(this.username, that.username)) {
UsernamePasswordCredentials.java 117 UsernamePasswordCredentials that = (UsernamePasswordCredentials) o; local
118 if (LangUtils.equals(this.principal, that.principal)) {
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
FailureLogMessage.java 60 FailureLogMessage that = (FailureLogMessage) obj; local
61 return this.stackTrace.equals(that.stackTrace);
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);

Completed in 1128 milliseconds

1 2 3 4 5 6 7 8 91011>>