/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/ |
NodeAttribute.java | 35 NodeAttribute that = (NodeAttribute) thatObject; local 36 return mName.equals(that.mName) && mType.equals(that.mType) && mValue.equals(that.mValue);
|
/libcore/luni/src/main/java/android/system/ |
UnixSocketAddress.java | 61 // Abstract sockets have a path that starts with (byte) 0. 72 // File system sockets have a path that ends with (byte) 0. 104 UnixSocketAddress that = (UnixSocketAddress) o; local 105 return Arrays.equals(sun_path, that.sun_path);
|
/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());
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/ |
EventDataItem.java | 48 final EventDataItem that = (EventDataItem) t; local 50 if (!TextUtils.equals(getStartDate(), that.getStartDate())) { 52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) { 53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind()); 54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { 57 !TextUtils.equals(getLabel(), that.getLabel())) {
|
RelationDataItem.java | 48 final RelationDataItem that = (RelationDataItem) t; local 50 if (!TextUtils.equals(getName(), that.getName())) { 52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) { 53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind()); 54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { 57 !TextUtils.equals(getLabel(), that.getLabel())) {
|
/packages/apps/Settings/src/com/android/settings/vpn2/ |
AppVpnInfo.java | 24 AppVpnInfo that = (AppVpnInfo) other; local 26 int result = packageName.compareTo(that.packageName); 28 result = that.userId - userId; 36 AppVpnInfo that = (AppVpnInfo) other; local 37 return userId == that.userId && Objects.equals(packageName, that.packageName);
|
/external/apache-http/src/org/apache/http/auth/ |
NTUserPrincipal.java | 104 NTUserPrincipal that = (NTUserPrincipal) o; local 105 if (LangUtils.equals(this.username, that.username) 106 && LangUtils.equals(this.domain, that.domain)) {
|
/external/apache-http/src/org/apache/http/message/ |
BasicNameValuePair.java | 175 BasicNameValuePair that = (BasicNameValuePair) object; local 176 return this.name.equals(that.name) 177 && LangUtils.equals(this.value, that.value);
|
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/ |
GcLogMessage.java | 68 GcLogMessage that = (GcLogMessage) obj; local 69 return this.type == that.type 70 && this.duration.equals(that.duration);
|
/external/caliper/caliper/src/main/java/com/google/caliper/config/ |
InstrumentConfig.java | 33 * {@link InstrumentSpec} in that any number of configurations can yield the same spec 60 InstrumentConfig that = (InstrumentConfig) obj; local 61 return this.className.equals(that.className) 62 && this.options.equals(that.options);
|
ResultProcessorConfig.java | 55 ResultProcessorConfig that = (ResultProcessorConfig) obj; local 56 return this.className.equals(that.className) 57 && this.options.equals(that.options);
|
/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
Scenario.java | 72 Scenario that = (Scenario) obj; local 73 return this.host.equals(that.host) 74 && this.vmSpec.equals(that.vmSpec) 75 && this.benchmarkSpec.equals(that.benchmarkSpec);
|
/external/conscrypt/src/main/java/org/conscrypt/ct/ |
CTLogInfo.java | 53 * Get the log's ID, that is the SHA-256 hash of it's public key 80 CTLogInfo that = (CTLogInfo)other; local 82 this.publicKey.equals(that.publicKey) && 83 this.description.equals(that.description) && 84 this.url.equals(that.url);
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
Scope.java | 44 * The underlying {@link AnnotationMirror} that represents the scope annotation. 66 * of that scope, otherwise returns a representation for an unscoped binding. 94 * <p>Make sure that the scope is actually {@link #isPresent() present} before calling as it will 105 * <p>Make sure that the scope is actually {@link #isPresent() present} before calling as it will 125 Scope that = (Scope) obj; local 127 .equivalent(this.annotationMirror, that.annotationMirror);
|
/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...] |
/external/guava/guava/src/com/google/common/collect/ |
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);
|
ForwardingMapEntry.java | 43 * 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; local 98 return Objects.equal(this.getKey(), that.getKey()) 99 && Objects.equal(this.getValue(), that.getValue());
|
SingletonImmutableSet.java | 40 // A race condition is avoided since threads will either see that the value 88 Set<?> that = (Set<?>) object; local 89 return that.size() == 1 && element.equals(that.iterator().next());
|
/external/guava/guava/src/com/google/common/net/ |
HostSpecifier.java | 37 * <p>Note that no network lookups are performed by any {@code HostSpecifier} 38 * methods. No attempt is made to verify that a provided specifier corresponds 42 * <p>If you know that a given string represents a numeric IP address, use 45 * Similarly, if you know that a given string represents a domain name, use 76 // Verify that no port was specified, and strip optional brackets from 113 * {@link #fromValid(String)} for a specifier that is not already known to be 124 // fromValid(), we implement this method in terms of that one rather 155 final HostSpecifier that = (HostSpecifier) other; local 156 return this.canonicalForm.equals(that.canonicalForm); 171 * an IPv6 address without brackets, brackets are added so that th [all...] |
/external/guava/guava-gwt/src-super/java/nio/charset/ |
Charset.java | 79 public final int compareTo(Charset that) { 80 return this.name.compareToIgnoreCase(that.name); 91 Charset that = (Charset) o; local 92 return this.name.equals(that.name);
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/ |
MethodRecorder.java | 48 MethodRecorder that = (MethodRecorder) obj; local 49 return printer.getText().equals(that.printer.getText());
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
DecoderSpecificInfo.java | 72 DecoderSpecificInfo that = (DecoderSpecificInfo) o;
local 74 if (!Arrays.equals(bytes, that.bytes)) {
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
UnknownEntry.java | 70 UnknownEntry that = (UnknownEntry) o; local 72 if (content != null ? !content.equals(that.content) : that.content != null) {
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
CallIdentifier.java | 32 * The call identifer that goes into a callID header and a in-reply-to header. 110 CallIdentifier that = (CallIdentifier) other; local 111 if (this.localId.compareTo(that.localId) != 0) { 114 if (this.host == that.host) 116 if ((this.host == null && that.host != null) 117 || (this.host != null && that.host == null)) 119 if (host.compareToIgnoreCase(that.host) != 0) {
|
/external/skia/src/gpu/batches/ |
GrTInstanceBatch.h | 4 * Use of this source code is governed by a BSD-style license that can be 126 GrTInstanceBatch* that = t->cast<GrTInstanceBatch>(); variable 127 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(), 128 that->bounds(), caps)) { 132 if (!Impl::CanCombine(this->seedGeometry(), that->seedGeometry(), fOverrides)) { 138 if (fOverrides.canTweakAlphaForCoverage() && !that->fOverrides.canTweakAlphaForCoverage()) { 139 fOverrides = that->fOverrides; 142 fGeoData.push_back_n(that->geoData()->count(), that->geoData()->begin()); 143 this->joinBounds(that->bounds()) [all...] |