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

1 2 3 4 5

  /external/clang/test/PCH/
cxx-member-init.cpp 13 S *that = this; member in struct:S
  /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/clang/test/CXX/special/class.init/class.base.init/
p9-0x.cpp 12 T *that = this; member in struct:S::T
  /external/guava/src/com/google/common/collect/
AbstractMapEntry.java 45 Entry<?, ?> that = (Entry<?, ?>) object; local
46 return Objects.equal(this.getKey(), that.getKey())
47 && Objects.equal(this.getValue(), that.getValue());
ByFunctionOrdering.java 29 * An ordering that orders elements by applying an order to the result of a
53 ByFunctionOrdering<?, ?> that = (ByFunctionOrdering<?, ?>) object; local
54 return this.function.equals(that.function)
55 && 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 62 LexicographicalOrdering<?> that = (LexicographicalOrdering<?>) object; local
63 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 26 /** An ordering that uses the reverse of a given order. */
79 ReverseOrdering<?> that = (ReverseOrdering<?>) object; local
80 return this.forwardOrder.equals(that.forwardOrder);
ComparatorOrdering.java 59 ComparatorOrdering<?> that = (ComparatorOrdering<?>) object; local
60 return this.comparator.equals(that.comparator);
EmptyImmutableMap.java 71 Map<?, ?> that = (Map<?, ?>) object; local
72 return that.isEmpty();
EmptyImmutableSet.java 72 Set<?> that = (Set<?>) object; local
73 return that.isEmpty();
ExplicitOrdering.java 26 /** An ordering that compares objects according to a given order. */
63 ExplicitOrdering<?> that = (ExplicitOrdering<?>) object; local
64 return this.rankMap.equals(that.rankMap);
SingletonImmutableSet.java 90 Set<?> that = (Set<?>) object; local
91 return that.size() == 1 && element.equals(that.iterator().next());
  /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);
  /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/org/apache/harmony/luni/lang/reflect/
ImplForWildcard.java 48 WildcardType that = (WildcardType) o; local
49 return Arrays.equals(getLowerBounds(), that.getLowerBounds()) &&
50 Arrays.equals(getUpperBounds(), that.getUpperBounds());
  /external/apache-http/src/org/apache/http/message/
BasicNameValuePair.java 170 BasicNameValuePair that = (BasicNameValuePair) object; local
171 return this.name.equals(that.name)
172 && LangUtils.equals(this.value, that.value);
  /external/chromium/third_party/libjingle/source/talk/base/
win32window.cc 6 * modification, are permitted provided that the following conditions are met:
105 Win32Window* that = reinterpret_cast<Win32Window*>( local
107 if (!that && (WM_CREATE == uMsg)) {
109 that = static_cast<Win32Window*>(cs->lpCreateParams);
110 that->wnd_ = hwnd;
111 ::SetWindowLongPtr(hwnd, GWL_USERDATA, reinterpret_cast<LONG_PTR>(that));
113 if (that) {
115 bool handled = that->OnMessage(uMsg, wParam, lParam, result);
124 that->wnd_ = NULL;
125 that->OnDestroyed()
    [all...]
  /external/doclava/src/com/google/doclava/
SourcePositionInfo.java 28 public SourcePositionInfo(SourcePositionInfo that) {
29 this.file = that.file;
30 this.line = that.line;
31 this.column = that.column;
35 * Given this position and str which occurs at that position, as well as str an index into str,
40 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index) {
41 if (that == null) {
44 int line = that.line;
53 return new SourcePositionInfo(that.file, line, 0);
56 public static SourcePositionInfo findBeginning(SourcePositionInfo that, String str)
78 SourcePositionInfo that = (SourcePositionInfo) o; local
    [all...]

Completed in 4393 milliseconds

1 2 3 4 5