/external/guava/guava/src/com/google/common/reflect/ |
Element.java | 120 * <p>Note that a method may still be effectively "final", or non-overridable when it has no 155 Element that = (Element) obj; local 156 return getOwnerType().equals(that.getOwnerType()) && member.equals(that.member);
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
RegularContiguousSet.java | 28 * An implementation of {@link ContiguousSet} that contains one or more elements. 145 RegularContiguousSet<?> that = (RegularContiguousSet<?>) object; local 146 if (this.domain.equals(that.domain)) { 147 return this.first().equals(that.first()) 148 && this.last().equals(that.last());
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
AbstractInvocationHandlerTest.java | 140 DelegatingInvocationHandlerWithEquals that = (DelegatingInvocationHandlerWithEquals) obj; local 141 return delegate.equals(that.delegate);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Row.java | 116 Row<C0, C1, C2, C3, C4> that = (Row<C0, C1, C2, C3, C4>)other; local 117 if (items.length != that.items.length) { 122 if (!Utility.objectEquals(item, that.items[i++])) { 134 Row<C0, C1, C2, C3, C4> that = (Row<C0, C1, C2, C3, C4>)other; local 135 result = items.length - that.items.length; 141 result = Utility.checkCompare(((Comparable)item), ((Comparable)that.items[i++]));
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
LocalePriorityList.java | 32 * "en, fr, de", and synthesize arbitrary quality values that put these in the 51 * weight, and then by input order. That is, if two languages have the same weight, the first one in the original order 121 * Return the weight for a given language, or null if there is none. Note that 169 final LocalePriorityList that = (LocalePriorityList) o; local 170 return languagesAndWeights.equals(that.languagesAndWeights);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Row.java | 112 Row<C0, C1, C2, C3, C4> that = (Row<C0, C1, C2, C3, C4>)other; local 113 if (items.length != that.items.length) { 118 if (!Utility.objectEquals(item, that.items[i++])) { 130 Row<C0, C1, C2, C3, C4> that = (Row<C0, C1, C2, C3, C4>)other; local 131 result = items.length - that.items.length; 137 result = Utility.checkCompare(((Comparable)item), ((Comparable)that.items[i++]));
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
LocalePriorityList.java | 31 * "en, fr, de", and synthesize arbitrary quality values that put these in the 50 * weight, and then by input order. That is, if two languages have the same weight, the first one in the original order 124 * Return the weight for a given language, or null if there is none. Note that 176 final LocalePriorityList that = (LocalePriorityList) o; local 177 return languagesAndWeights.equals(that.languagesAndWeights);
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/ |
CounterImpl.java | 198 final ICounter that = (ICounter) obj; local 199 return this.missed == that.getMissedCount() 200 && this.covered == that.getCoveredCount();
|
LineImpl.java | 142 final ILine that = (ILine) obj; local 143 return this.instructions.equals(that.getInstructionCounter()) 144 && this.branches.equals(that.getBranchCounter());
|
/external/jmdns/src/javax/jmdns/impl/ |
DNSIncoming.java | 32 // It is sending out target strings that don't follow the "domain name" format. 324 // It is sending out target strings that don't follow the "domain name" format. 533 void append(DNSIncoming that) { 534 if (this.isQuery() && this.isTruncated() && that.isQuery()) { 535 this._questions.addAll(that.getQuestions()); 536 this._answers.addAll(that.getAnswers()); 537 this._authoritativeAnswers.addAll(that.getAuthorities()); 538 this._additionals.addAll(that.getAdditionals());
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
CencSampleEncryptionInformationGroupEntry.java | 103 CencSampleEncryptionInformationGroupEntry that = (CencSampleEncryptionInformationGroupEntry) o; local 105 if (isEncrypted != that.isEncrypted) { 108 if (ivSize != that.ivSize) { 111 if (!Arrays.equals(kid, that.kid)) {
|
SampleGroupDescriptionBox.java | 34 * track. Each instance of the SampleGroupDescription box has a type code that distinguishes different 169 SampleGroupDescriptionBox that = (SampleGroupDescriptionBox) o; local 171 if (defaultLength != that.defaultLength) { 174 if (groupEntries != null ? !groupEntries.equals(that.groupEntries) : that.groupEntries != null) { 177 if (groupingType != null ? !groupingType.equals(that.groupingType) : that.groupingType != null) {
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
AddressImpl.java | 86 AddressImpl that = (AddressImpl) other; local 87 if (that.getMatcher() != null) 88 return that.getMatcher().match(this.encode()); 89 else if (that.displayName != null && this.displayName == null) 91 else if (that.displayName == null) 92 return address.match(that.address); 94 return displayName.equalsIgnoreCase(that.displayName) 95 && address.match(that.address); 110 /** Get the port from the imbedded URI. This assumes that a SIP URL 124 * that the encapsulated object is a SipUri [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Address.java | 32 * that proxy information. For secure connections the address also includes the 35 * <p>HTTP requests that share the same {@code Address} may also share the same 116 * non-null list that contains minimally {@link Protocol#HTTP_1_1}. 151 Address that = (Address) other; local 152 return equal(this.proxy, that.proxy) 153 && this.uriHost.equals(that.uriHost) 154 && this.uriPort == that.uriPort 155 && equal(this.sslSocketFactory, that.sslSocketFactory) 156 && equal(this.hostnameVerifier, that.hostnameVerifier) 157 && equal(this.certificatePinner, that.certificatePinner [all...] |
/external/skia/src/gpu/batches/ |
GrNinePatch.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 150 GrNonAANinePatchBatch* that = t->cast<GrNonAANinePatchBatch>(); variable 151 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(), 152 that->bounds(), caps)) { 156 SkASSERT(this->fImageWidth == that->fImageWidth && 157 this->fImageHeight == that->fImageHeight); 161 if (fOverrides.canTweakAlphaForCoverage() && !that->fOverrides.canTweakAlphaForCoverage()) { 162 fOverrides = that->fOverrides; 165 fGeoData.push_back_n(that->geoData()->count(), that->geoData()->begin()) [all...] |
/frameworks/base/core/java/android/view/inputmethod/ |
SparseRectFArray.java | 37 * The keys, in ascending order, of those {@link RectF} that are not null. For example, 105 final SparseRectFArray that = (SparseRectFArray) obj; local 107 return Arrays.equals(mKeys, that.mKeys) && Arrays.equals(mCoordinates, that.mCoordinates) 108 && Arrays.equals(mFlagsArray, that.mFlagsArray); 145 * Throws {@link IllegalArgumentException} to make sure that this class is correctly used. 193 * existing keys that have been previously specified.
|
/frameworks/base/packages/Osu/src/com/android/anqp/eap/ |
EAPMethod.java | 169 EAPMethod that = (EAPMethod) thatObject; local 170 return mEAPMethodID == that.mEAPMethodID && mAuthParams.equals(that.mAuthParams);
|
/frameworks/base/test-runner/src/android/test/suitebuilder/ |
TestMethod.java | 119 TestMethod that = (TestMethod) o; local 122 ? !enclosingClassname.equals(that.enclosingClassname) 123 : that.enclosingClassname != null) { 127 ? !testMethodName.equals(that.testMethodName) 128 : that.testMethodName != null) {
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/ |
EAPMethod.java | 170 EAPMethod that = (EAPMethod) thatObject; local 171 return mEAPMethodID == that.mEAPMethodID && mAuthParams.equals(that.mAuthParams);
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
CertId.java | 9 * by Oracle in the LICENSE file that accompanied this code. 11 * This code is distributed in the hope that it will be useful, but WITHOUT 14 * version 2 for more details (a copy is included in the LICENSE file that 209 CertId that = (CertId) other; local 210 if (hashAlgId.equals(that.getHashAlgorithm()) && 211 Arrays.equals(issuerNameHash, that.getIssuerNameHash()) && 212 Arrays.equals(issuerKeyHash, that.getIssuerKeyHash()) && 213 certSerialNumber.getNumber().equals(that.getSerialNumber())) {
|
/libcore/ojluni/src/main/java/sun/util/calendar/ |
Era.java | 9 * by Oracle in the LICENSE file that accompanied this code. 11 * This code is distributed in the hope that it will be useful, but WITHOUT 14 * version 2 for more details (a copy is included in the LICENSE file that 32 * The class <code>Era</code> represents a calendar era that defines a 35 * calendar system. An era starts at any point of time (Gregorian) that is 38 * <p><code>Era</code>s that are applicable to a particular calendar 128 Era that = (Era) o; local 129 return name.equals(that.name) 130 && abbr.equals(that.abbr) 131 && since == that.sinc [all...] |
/packages/apps/Camera2/src/com/android/camera/one/v2/common/ |
PictureSizeCalculator.java | 37 * However, we may wish to take pictures with a size that is not directly 93 Configuration that = (Configuration) o; local 95 if (!mPostCrop.equals(that.mPostCrop)) { 97 } else if (!mSize.equals(that.mSize)) {
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/model/ |
PackageDownloadInfo.java | 135 PackageDownloadInfo that = (PackageDownloadInfo) o; local 136 return minVersion == that.minVersion 137 && packageChecksumSupportsSha1 == that.packageChecksumSupportsSha1 138 && Objects.equals(location, that.location) 139 && Objects.equals(cookieHeader, that.cookieHeader) 140 && Arrays.equals(packageChecksum, that.packageChecksum) 141 && Arrays.equals(signatureChecksum, that.signatureChecksum);
|
WifiInfo.java | 128 WifiInfo that = (WifiInfo) o; local 129 return hidden == that.hidden 130 && proxyPort == that.proxyPort 131 && Objects.equals(ssid, that.ssid) 132 && Objects.equals(securityType, that.securityType) 133 && Objects.equals(password, that.password) 134 && Objects.equals(proxyHost, that.proxyHost) 135 && Objects.equals(proxyBypassHosts, that.proxyBypassHosts) 136 && Objects.equals(pacUrl, that.pacUrl);
|
/packages/apps/TV/common/src/com/android/tv/common/recording/ |
RecordingCapability.java | 34 * The max number of concurrent sessions that require a tuner. 41 * The max number concurrent session that play a stream. 95 RecordingCapability that = (RecordingCapability) o; local 96 return Objects.equals(maxConcurrentTunedSessions, that.maxConcurrentTunedSessions) && 97 Objects.equals(maxConcurrentPlayingSessions, that.maxConcurrentPlayingSessions) && 99 that.maxConcurrentSessionsOfAllTypes) && 100 Objects.equals(playbackWhileRecording, that.playbackWhileRecording) && 101 Objects.equals(inputId, that.inputId);
|