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

1 2 3 4 5 6 7 8 91011>>

  /development/tools/bugreport/src/com/android/bugreport/stacks/
NativeStackFrameSnapshot.java 34 final NativeStackFrameSnapshot that = new NativeStackFrameSnapshot(); local
35 that.library = this.library;
36 that.symbol = this.symbol;
37 that.offset = this.offset;
38 return that;
  /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);
  /external/skia/src/gpu/effects/
GrBlurredEdgeFragmentProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
66 const GrBlurredEdgeFP& that = other.cast<GrBlurredEdgeFP>(); local
67 return that.fMode == fMode;
  /libcore/luni/src/main/java/libcore/reflect/
GenericArrayTypeImpl.java 43 GenericArrayType that = (GenericArrayType) o; local
44 return Objects.equals(getGenericComponentType(), that.getGenericComponentType());
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
EventDataItem.java 48 final EventDataItem that = (EventDataItem) t; local
50 if (!TextUtils.equals(getStartDate(), that.getStartDate())) {
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
57 !TextUtils.equals(getLabel(), that.getLabel())) {
RelationDataItem.java 48 final RelationDataItem that = (RelationDataItem) t; local
50 if (!TextUtils.equals(getName(), that.getName())) {
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
57 !TextUtils.equals(getLabel(), that.getLabel())) {
  /packages/apps/Settings/src/com/android/settings/applications/
UserAppInfo.java 46 final UserAppInfo that = (UserAppInfo) other; local
50 return that.userInfo.id == userInfo.id && TextUtils.equals(that.appInfo.packageName,
  /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/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);

Completed in 1191 milliseconds

1 2 3 4 5 6 7 8 91011>>