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

1 2 3 4 5 6 7 8 91011

  /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());
  /external/apache-http/src/org/apache/http/auth/
BasicUserPrincipal.java 72 BasicUserPrincipal that = (BasicUserPrincipal) o; local
73 if (LangUtils.equals(this.username, that.username)) {
UsernamePasswordCredentials.java 112 UsernamePasswordCredentials that = (UsernamePasswordCredentials) o; local
113 if (LangUtils.equals(this.principal, that.principal)) {
NTUserPrincipal.java 99 NTUserPrincipal that = (NTUserPrincipal) o; local
100 if (LangUtils.equals(this.username, that.username)
101 && LangUtils.equals(this.domain, that.domain)) {
  /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/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) {
  /libcore/luni/src/main/java/java/security/
CodeSigner.java 74 CodeSigner that = (CodeSigner) obj; local
75 if (!signerCertPath.equals(that.signerCertPath)) {
78 return timestamp == null ? that.timestamp == null : timestamp
79 .equals(that.timestamp);
105 * hash code for {@code CodeSigner}s that are equal to each other as
Timestamp.java 83 Timestamp that = (Timestamp) obj; local
84 return timestamp.equals(that.timestamp)
85 && signerCertPath.equals(that.signerCertPath);
110 * hash code for {@code Timestamp}s that are equal to each other as
  /libcore/luni/src/main/java/libcore/reflect/
WildcardTypeImpl.java 48 WildcardType that = (WildcardType) o; local
49 return Arrays.equals(getLowerBounds(), that.getLowerBounds()) &&
50 Arrays.equals(getUpperBounds(), that.getUpperBounds());

Completed in 403 milliseconds

1 2 3 4 5 6 7 8 91011