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

1 2 3 4 5 6 7

  /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/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/chromium_org/base/win/
object_watcher.cc 2 // Use of this source code is governed by a BSD-style license that can be
88 // The destructor blocks on any callbacks that are in flight, so we know that
89 // that is always a pointer to a valid ObjectWater.
90 ObjectWatcher* that = static_cast<ObjectWatcher*>(param); local
91 that->origin_loop_->PostTask(FROM_HERE, that->callback_);
92 that->callback_.Reset();
105 // Need to shutdown the watch so that we don't try to access the MessageLoop
  /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/glide/library/src/main/java/com/bumptech/glide/load/engine/
OriginalEngineKey.java 24 OriginalEngineKey that = (OriginalEngineKey) o; local
26 if (!id.equals(that.id)) {
  /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);
CompoundOrdering.java 25 /** An ordering that tries several comparators in order. */
61 CompoundOrdering<?> that = (CompoundOrdering<?>) object; local
62 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-testlib/src/com/google/common/collect/testing/
MinimalSet.java 26 * A simplistic set which implements the bare minimum so that it can be used in
28 * allows null elements so that they can be used in the testers.
69 Set<?> that = (Set<?>) object; local
70 return (this.size() == that.size()) && this.containsAll(that);
UnhashableObject.java 35 UnhashableObject that = (UnhashableObject) object; local
36 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/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) {

Completed in 1035 milliseconds

1 2 3 4 5 6 7