Searched refs:that (Results 151 - 175 of 1681) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/auth/
H A DNTUserPrincipal.java104 NTUserPrincipal that = (NTUserPrincipal) o;
105 if (LangUtils.equals(this.username, that.username)
106 && LangUtils.equals(this.domain, that.domain)) {
/external/apache-http/src/org/apache/http/conn/routing/
H A DRouteTracker.java62 * <code>null</code> indicates that the default should be used.
67 // now follow attributes that indicate the established route
339 RouteTracker that = (RouteTracker) o;
340 boolean equal = this.targetHost.equals(that.targetHost);
342 ( this.localAddress == that.localAddress) ||
344 this.localAddress.equals(that.localAddress));
346 ( this.proxyChain == that.proxyChain) ||
348 (that.proxyChain != null) &&
349 (this.proxyChain.length == that.proxyChain.length));
352 (this.connected == that
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicNameValuePair.java175 BasicNameValuePair that = (BasicNameValuePair) object;
176 return this.name.equals(that.name)
177 && LangUtils.equals(this.value, that.value);
/external/chromium_org/chrome/browser/sync_file_system/
H A Dfile_change.h2 // Use of this source code is governed by a BSD-style license that can be
39 bool operator==(const FileChange& that) const {
40 return change() == that.change() &&
41 file_type() == that.file_type();
/external/chromium_org/third_party/skia/include/utils/win/
H A DSkTScopedComPtr.h5 * Use of this source code is governed by a BSD-style license that can be
63 void swap(SkTScopedComPtr<T>& that) { argument
65 this->fPtr = that.fPtr;
66 that.fPtr = temp;
/external/guava/guava/src/com/google/common/base/
H A DFunctionalEquivalence.java63 FunctionalEquivalence<?, ?> that = (FunctionalEquivalence<?, ?>) obj;
64 return function.equals(that.function)
65 && resultEquivalence.equals(that.resultEquivalence);
/external/guava/guava/src/com/google/common/cache/
H A DRemovalNotification.java80 Entry<?, ?> that = (Entry<?, ?>) object;
81 return Objects.equal(this.getKey(), that.getKey())
82 && Objects.equal(this.getValue(), that.getValue());
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapEntry.java48 Entry<?, ?> that = (Entry<?, ?>) object;
49 return Objects.equal(this.getKey(), that.getKey())
50 && Objects.equal(this.getValue(), that.getValue());
H A DByFunctionOrdering.java30 * An ordering that orders elements by applying an order to the result of a
54 ByFunctionOrdering<?, ?> that = (ByFunctionOrdering<?, ?>) object;
55 return this.function.equals(that.function)
56 && this.ordering.equals(that.ordering);
H A DForwardingMapEntry.java43 * the desired behavior for map implementations that use non-standard notions of
48 * when all of the methods that they depend on are thread-safe.
97 Entry<?, ?> that = (Entry<?, ?>) object;
98 return Objects.equal(this.getKey(), that.getKey())
99 && Objects.equal(this.getValue(), that.getValue());
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalSet.java26 * 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;
70 return (this.size() == that.size()) && this.containsAll(that);
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DTesterRequirements.java25 * Encapsulates the constraints that a class under test must satisfy in order
26 * for a tester method to be run against that class.
64 TesterRequirements that = (TesterRequirements) object;
65 return this.presentFeatures.equals(that.presentFeatures)
66 && this.absentFeatures.equals(that.absentFeatures);
/external/llvm/test/MC/ARM/
H A Dfp-const-errors.s3 @ Test for floating point constants that are out of the 8-bit encoded value range
10 @ Test that vmov.f instructions do not accept an 8-bit encoded float as an operand
17 @ Test that fconst instructions do not accept a float constant as an operand
/external/mockito/src/org/mockito/internal/util/reflection/
H A DInstanceField.java25 * @param field The field that should be accessed, note that no checks are performed to ensure
47 * @param value The value that should be written to the field.
55 * Check that the field is not null.
114 InstanceField that = (InstanceField) o;
116 if (!field.equals(that.field)) return false;
117 if (!instance.equals(that.instance)) return false;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DTemporalLevelEntry.java22 * The Temporal Level sample grouping ('tele') provides a codec-independent sample grouping that can be used to group samples (access units) in a track (and potential track fragments) according to temporal level, where samples of one temporal level have no coding dependencies on samples of higher temporal levels. The temporal level equals the sample group description index (taking values 1, 2, 3, etc). The bitstream containing only the access units from the first temporal level to a higher temporal level remains conforming to the coding standard.
59 TemporalLevelEntry that = (TemporalLevelEntry) o;
61 if (levelIndependentlyDecodable != that.levelIndependentlyDecodable) return false;
62 if (reserved != that.reserved) return false;
H A DUnknownEntry.java70 UnknownEntry that = (UnknownEntry) o;
72 if (content != null ? !content.equals(that.content) : that.content != null) {
H A DVisualRandomAccessEntry.java24 * For some coding systems a sync sample is specified to be a random access point after which all samples in decoding order can be correctly decoded. However, it may be possible to encode an “open” random access point, after which all samples in output order can be correctly decoded, but some samples following the random access point in decoding order and preceding the random access point in output order need not be correctly decodable. For example, an intra picture starting an open group of pictures can be followed in decoding order by (bi-)predicted pictures that however precede the intra picture in output order; though they possibly cannot be correctly decoded if the decoding starts from the intra picture, they are not needed.
26 * Such “open” random-access samples can be marked by being a member of this group. Samples marked by this group must be random access points, and may also be sync points (i.e. it is not required that samples marked by the sync sample table be excluded).
70 VisualRandomAccessEntry that = (VisualRandomAccessEntry) o;
72 if (numLeadingSamples != that.numLeadingSamples) return false;
73 if (numLeadingSamplesKnown != that.numLeadingSamplesKnown) return false;
/external/nist-sip/java/gov/nist/core/
H A DHostPort.java67 * Note that this could be different from the string that has
91 HostPort that = (HostPort) other;
92 return port == that.port && host.equals(that.host);
H A DNameValue.java107 * A flag that indicates that doublequotes should be put around the value
149 * Bug: RFC3261 stipulates that an opaque parameter in authenticate header
226 NameValue that = (NameValue) other;
227 if (this == that)
229 if (this.name == null && that.name != null || this.name != null
230 && that.name == null)
232 if (this.name != null && that.name != null
233 && this.name.compareToIgnoreCase(that.name) != 0)
235 if (this.value != null && that
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DHeader.java39 Header that = (Header) other;
40 return this.name.equals(that.name)
41 && this.value.equals(that.value);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowGeoPoint.java39 ShadowGeoPoint that = (ShadowGeoPoint) o;
41 if (lat != that.lat) return false;
42 if (lng != that.lng) return false;
/external/skia/include/utils/win/
H A DSkTScopedComPtr.h5 * Use of this source code is governed by a BSD-style license that can be
63 void swap(SkTScopedComPtr<T>& that) { argument
65 this->fPtr = that.fPtr;
66 that.fPtr = temp;
/external/smack/src/org/apache/harmony/javax/security/auth/
H A DPrivateCredentialPermission.java117 * Initialize a PrivateCredentialPermission object and checks that a target
253 PrivateCredentialPermission that = (PrivateCredentialPermission) obj;
255 return credentialClass.equals(that.credentialClass) && (offset == that.offset)
256 && sameMembers(set, that.set, offset);
266 PrivateCredentialPermission that = (PrivateCredentialPermission) permission;
269 .equals(that.getCredentialClass()))) {
273 if (that.offset == 0) {
278 CredOwner[] thatCo = that.set;
280 int thatPrincipalsSize = that
[all...]
/external/chromium_org/remoting/webapp/
H A Dhost_controller.js2 // Use of this source code is governed by a BSD-style license that can be
15 // Note that the values in the enums below are copied from
127 var that = this;
195 that.hostDaemonFacade_.startDaemon(
210 that.hostDaemonFacade_.getPinHash(
226 that.getClientBaseJid_(
245 that.hostDaemonFacade_.getCredentialsFromAuthCode(
252 that.hostDaemonFacade_.getPinHash(
323 that.hostDaemonFacade_.getHostClientId(
338 that
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dnav_description.js2 // Use of this source code is governed by a BSD-style license that can be
31 * that were crossed into, like "Toolbar" or "Menu Bar" or "List with
35 * userValue The text that the user has entered.
154 * @param {cvox.NavDescription} that A NavDescription.
157 cvox.NavDescription.prototype.equals = function(that) {
158 return this.context == that.context &&
159 this.text == that.text &&
160 this.userValue == that.userValue &&
161 this.annotation == that.annotation;

Completed in 426 milliseconds

1234567891011>>