HomeSort by relevance Sort by last modified time
    Searched defs:that (Results 101 - 125 of 1509) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
NAIRealmElement.java 80 NAIRealmElement that = (NAIRealmElement) thatObject; local
81 return mRealmDataList.equals(that.mRealmDataList);
RoamingConsortiumElement.java 75 RoamingConsortiumElement that = (RoamingConsortiumElement) thatObject; local
76 return mOIs.equals(that.mOIs);
ThreeGPPNetworkElement.java 101 ThreeGPPNetworkElement that = (ThreeGPPNetworkElement) thatObject; local
102 return mNetworks.equals(that.mNetworks);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
InnerAuthEAP.java 73 InnerAuthEAP that = (InnerAuthEAP) thatObject; local
74 return mEAPMethodID == that.mEAPMethodID;
  /libcore/ojluni/src/main/java/java/security/
CodeSigner.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
131 CodeSigner that = (CodeSigner)obj; local
133 if (this == that) {
136 Timestamp thatTimestamp = that.getTimestamp();
147 return signerCertPath.equals(that.getSignerCertPath());
Timestamp.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
128 Timestamp that = (Timestamp)obj; local
130 if (this == that) {
133 return (timestamp.equals(that.getTimestamp()) &&
134 signerCertPath.equals(that.getSignerCertPath()));
  /libcore/ojluni/src/main/java/javax/net/ssl/
SNIServerName.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
34 * The SNI extension is a feature that extends the SSL/TLS protocols to
40 * methods that can change the state of an instance once it has been created.
62 * Note that the {@code encoded} byte array is cloned to protect against
127 SNIServerName that = (SNIServerName)other; local
128 return (this.type == that.type) &&
129 Arrays.equals(this.encoded, that.encoded);
175 * Please NOTE that the exact details of the representation are unspecifie
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
ImDataItem.java 91 final ImDataItem that = (ImDataItem) t; local
93 if (!getData().equals(that.getData())) {
95 } else if (!isProtocolValid() || !that.isProtocolValid()) {
97 // protocol, check to see if the other has a valid that is not custom
100 } else if (that.isProtocolValid()) {
101 return that.getProtocol() == Im.PROTOCOL_CUSTOM;
104 } else if (getProtocol() != that.getProtocol()) {
107 !TextUtils.equals(getCustomProtocol(), that.getCustomProtocol())) {
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
ImDataItem.java 87 final ImDataItem that = (ImDataItem) t; local
89 if (!getData().equals(that.getData())) {
91 } else if (!isProtocolValid() || !that.isProtocolValid()) {
93 // protocol, check to see if the other has a valid that is not custom
96 } else if (that.isProtocolValid()) {
97 return that.getProtocol() == Im.PROTOCOL_CUSTOM;
100 } else if (getProtocol() != that.getProtocol()) {
103 && !TextUtils.equals(getCustomProtocol(), that.getCustomProtocol())) {
  /packages/services/Car/car-lib/src/android/car/hardware/radio/
CarRadioPreset.java 24 * CarPreset object corresponds to a preset that is stored on the car's Radio unit.
105 CarRadioPreset that = (CarRadioPreset) o; local
107 return that.getPresetNumber() == mPresetNumber &&
108 that.getBand() == mBand &&
109 that.getChannel() == mChannel &&
110 that.getSubChannel() == mSubChannel;
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
Transaction.java 25 * An entity that represents a single transaction (purchase) of an item.
36 * The random long value that will be also signed by the private key and verified in the server
37 * that the same nonce can't be reused to prevent replay attacks.
85 Transaction that = (Transaction) o; local
86 return Objects.equals(mItemId, that.mItemId) && Objects.equals(mUserId, that.mUserId) &&
87 Objects.equals(mClientNonce, that.mClientNonce);
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
Transaction.java 25 * An entity that represents a single transaction (purchase) of an item.
36 * The random long value that will be also signed by the private key and verified in the server
37 * that the same nonce can't be reused to prevent replay attacks.
85 Transaction that = (Transaction) o; local
86 return Objects.equals(mItemId, that.mItemId) && Objects.equals(mUserId, that.mUserId) &&
87 Objects.equals(mClientNonce, that.mClientNonce);
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/server/
Transaction.java 25 * An entity that represents a single transaction (purchase) of an item.
36 * The random long value that will be also signed by the private key and verified in the server
37 * that the same nonce can't be reused to prevent replay attacks.
85 Transaction that = (Transaction) o; local
86 return Objects.equals(mItemId, that.mItemId) && Objects.equals(mUserId, that.mUserId) &&
87 Objects.equals(mClientNonce, that.mClientNonce);
  /external/apache-http/src/org/apache/http/
HttpHost.java 199 HttpHost that = (HttpHost) obj; local
200 return this.lcHostname.equals(that.lcHostname)
201 && this.port == that.port
202 && this.schemeName.equals(that.schemeName);
ProtocolVersion.java 41 * RFC 3261 specifies a message format that is identical to HTTP except
48 * Note that {@link #equals} and {@link #hashCode} are defined as
185 ProtocolVersion that = (ProtocolVersion) obj; local
187 return ((this.protocol.equals(that.protocol)) &&
188 (this.major == that.major) &&
189 (this.minor == that.minor));
198 * @param that the protocol version to consider
203 public boolean isComparable(ProtocolVersion that) {
204 return (that != null) && this.protocol.equals(that.protocol)
    [all...]
  /external/apache-http/src/org/apache/http/auth/
NTCredentials.java 165 NTCredentials that = (NTCredentials) o; local
166 if (LangUtils.equals(this.principal, that.principal)
167 && LangUtils.equals(this.workstation, that.workstation)) {
  /external/apache-http/src/org/apache/http/message/
BasicHeaderElement.java 42 * Some HTTP headers (such as the set-cookie header) have values that
208 BasicHeaderElement that = (BasicHeaderElement) object; local
209 return this.name.equals(that.name)
210 && LangUtils.equals(this.value, that.value)
211 && LangUtils.equals(this.parameters, that.parameters);
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
VmConfig.java 35 * in that any number of configurations can yield the same spec (due to default flag values) and any
98 VmConfig that = (VmConfig) obj; local
99 return this.platform.equals(that.platform)
100 && this.vmHome.equals(that.vmHome)
101 && this.options.equals(that.options);
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
BenchmarkSpec.java 77 BenchmarkSpec that = (BenchmarkSpec) obj; local
78 return this.className.equals(that.className)
79 && this.methodName.equals(that.methodName)
80 && this.parameters.equals(that.parameters);
InstrumentSpec.java 67 InstrumentSpec that = (InstrumentSpec) obj; local
68 return this.className.equals(that.className)
69 && this.options.equals(that.options);
Trial.java 85 Trial that = (Trial) obj; local
86 return this.id.equals(that.id)
87 && this.run.equals(that.run)
88 && this.instrumentSpec.equals(that.instrumentSpec)
89 && this.scenario.equals(that.scenario)
90 && this.measurements.equals(that.measurements);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
ParameterizedTypeName.java 73 ParameterizedTypeName that = (ParameterizedTypeName) obj; local
74 return this.type.equals(that.type)
75 && this.parameters.equals(that.parameters);
TypeVariableName.java 77 TypeVariableName that = (TypeVariableName) obj; local
78 return this.name.toString().equals(that.name.toString())
79 && this.extendsBounds.equals(that.extendsBounds);
97 // code with type variables that include upper or lower bounds.
  /external/guava/guava/src/com/google/common/cache/
RemovalNotification.java 82 Entry<?, ?> that = (Entry<?, ?>) object; local
83 return Objects.equal(this.getKey(), that.getKey())
84 && Objects.equal(this.getValue(), that.getValue());
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableSet.java 74 Set<?> that = (Set<?>) object; local
75 return that.isEmpty();

Completed in 1096 milliseconds

1 2 3 45 6 7 8 91011>>