HomeSort by relevance Sort by last modified time
    Searched defs:that (Results 1 - 25 of 1889) 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/pdfium/core/fpdfdoc/
cpdf_aaction.cpp 2 // Use of this source code is governed by a BSD-style license that can be
43 CPDF_AAction::CPDF_AAction(const CPDF_AAction& that) = default; member in class:CPDF_AAction
cpdf_iconfit.cpp 2 // Use of this source code is governed by a BSD-style license that can be
15 CPDF_IconFit::CPDF_IconFit(const CPDF_IconFit& that) = default; member in class:CPDF_IconFit
cpdf_link.cpp 2 // Use of this source code is governed by a BSD-style license that can be
16 CPDF_Link::CPDF_Link(const CPDF_Link& that) = default; member in class:CPDF_Link
  /external/skia/src/gpu/effects/
GrBlurredEdgeFragmentProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
51 const GrBlurredEdgeFragmentProcessor& that = other.cast<GrBlurredEdgeFragmentProcessor>(); local
52 (void)that;
53 if (fMode != that.fMode) return false;
GrLumaColorFilterEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
42 const GrLumaColorFilterEffect& that = other.cast<GrLumaColorFilterEffect>(); local
43 (void)that;
GrPremulInputFragmentProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
43 const GrPremulInputFragmentProcessor& that = other.cast<GrPremulInputFragmentProcessor>(); local
44 (void)that;
GrUnpremulInputFragmentProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
44 const GrUnpremulInputFragmentProcessor& that = other.cast<GrUnpremulInputFragmentProcessor>(); local
45 (void)that;
  /external/skqp/src/gpu/effects/
GrBlurredEdgeFragmentProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
51 const GrBlurredEdgeFragmentProcessor& that = other.cast<GrBlurredEdgeFragmentProcessor>(); local
52 (void)that;
53 if (fMode != that.fMode) return false;
GrLumaColorFilterEffect.cpp 4 * Use of this source code is governed by a BSD-style license that can be
42 const GrLumaColorFilterEffect& that = other.cast<GrLumaColorFilterEffect>(); local
43 (void)that;
GrPremulInputFragmentProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
43 const GrPremulInputFragmentProcessor& that = other.cast<GrPremulInputFragmentProcessor>(); local
44 (void)that;
GrUnpremulInputFragmentProcessor.cpp 4 * Use of this source code is governed by a BSD-style license that can be
44 const GrUnpremulInputFragmentProcessor& that = other.cast<GrUnpremulInputFragmentProcessor>(); local
45 (void)that;
  /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);

Completed in 352 milliseconds

1 2 3 4 5 6 7 8 91011>>