/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
MediaConstraints.java | 6 * modification, are permitted provided that the following conditions are met: 68 KeyValuePair that = (KeyValuePair)other; local 69 return key.equals(that.key) && value.equals(that.value);
|
/external/webrtc/webrtc/base/ |
win32window.cc | 5 * that can be found in the LICENSE file in the root of the source 92 Win32Window* that = reinterpret_cast<Win32Window*>( local 94 if (!that && (WM_CREATE == uMsg)) { 96 that = static_cast<Win32Window*>(cs->lpCreateParams); 97 that->wnd_ = hwnd; 98 ::SetWindowLongPtr(hwnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(that)); 100 if (that) { 102 bool handled = that->OnMessage(uMsg, wParam, lParam, result); 111 that->wnd_ = NULL; 112 that->OnNcDestroy() [all...] |
/frameworks/base/core/java/android/os/ |
ParcelUuid.java | 105 ParcelUuid that = (ParcelUuid) object; local 107 return (this.mUuid.equals(that.mUuid));
|
/frameworks/base/packages/Osu/src/com/android/anqp/ |
IconInfo.java | 63 IconInfo that = (IconInfo) thatObject; local 64 return mHeight == that.mHeight && 65 mWidth == that.mWidth && 66 mFileName.equals(that.mFileName) && 67 mIconType.equals(that.mIconType) && 68 mLanguage.equals(that.mLanguage);
|
/frameworks/base/packages/Osu/src/com/android/anqp/eap/ |
ExpandedEAPMethod.java | 61 ExpandedEAPMethod that = (ExpandedEAPMethod) thatObject; local 62 return that.getVendorID() == getVendorID() && that.getVendorType() == getVendorType();
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/ |
IMSIParameter.java | 77 IMSIParameter that = (IMSIParameter) thatObject; local 78 return mPrefix == that.mPrefix && mImsi.equals(that.mImsi);
|
/frameworks/base/test-runner/src/android/test/ |
ClassPathPackageInfo.java | 26 * classes and subpackages of that package. This is a version that does. 70 ClassPathPackageInfo that = (ClassPathPackageInfo) obj; local 71 return (this.packageName).equals(that.packageName);
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/ |
AnnotationField.java | 75 AnnotationField that = (AnnotationField) obj; local 76 return mDeclaredClass.equals(that.mDeclaredClass) && AnnotationAnalyzer.get() 77 .getTypeUtils().isSameType(mField.asType(), that.mField.asType());
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
IMSIParameter.java | 82 IMSIParameter that = (IMSIParameter) thatObject; local 83 return mPrefix == that.mPrefix && mImsi.equals(that.mImsi);
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
I18Name.java | 65 I18Name that = (I18Name) thatObject; local 66 return mLanguage.equals(that.mLanguage) && mText.equals(that.mText);
|
/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/ContactsCommon/src/com/android/contacts/common/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/services/Car/car-lib/src/android/car/hardware/camera/ |
CarCameraState.java | 59 * @param that 61 public CarCameraState(CarCameraState that) { 62 mCameraIsOn = that.getCameraIsOn(); 63 mOverlayIsOn = that.getOverlayIsOn(); 91 CarCameraState that = (CarCameraState) o; local 93 return (that.getCameraIsOn() == mCameraIsOn && 94 that.getOverlayIsOn() == mOverlayIsOn);
|
/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);
|