Searched defs:other (Results 26 - 50 of 195) sorted by relevance

12345678

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DDisplayAdjustmentUtils.java138 private static float[] multiply(float[] matrix, float[] other) { argument
140 return other;
143 Matrix.multiplyMM(result, 0, matrix, 0, other, 0);
/frameworks/base/services/tests/servicestests/src/com/android/server/job/
H A DMockPriorityJobService.java89 public boolean equals(Object other) { argument
90 if (other instanceof Event) {
91 Event otherEvent = (Event) other;
/frameworks/base/telecomm/java/android/telecom/
H A DPhoneAccountHandle.java83 * collide with values generated on other phones or after a data wipe of a given phone.
119 public boolean equals(Object other) { argument
120 return other != null &&
121 other instanceof PhoneAccountHandle &&
122 Objects.equals(((PhoneAccountHandle) other).getComponentName(),
124 Objects.equals(((PhoneAccountHandle) other).getId(), getId()) &&
125 Objects.equals(((PhoneAccountHandle) other).getUserHandle(), getUserHandle());
H A DStatusHints.java140 public boolean equals(Object other) { argument
141 if (other != null && other instanceof StatusHints) {
142 StatusHints otherHints = (StatusHints) other;
/frameworks/base/telephony/java/android/telephony/
H A DCellInfoCdma.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoCdma o = (CellInfoCdma) other;
H A DCellInfoGsm.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoGsm o = (CellInfoGsm) other;
H A DCellInfoLte.java77 public boolean equals(Object other) { argument
78 if (!super.equals(other)) {
82 CellInfoLte o = (CellInfoLte) other;
H A DCellInfoWcdma.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoWcdma o = (CellInfoWcdma) other;
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h91 uint8_t other() const { function in class:mcld::LDSymbol
93 return m_pResolveInfo->other();
98 return m_pResolveInfo->other();
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp71 ResolveInfo::Visibility other = ResolveInfo::Default; local
74 name, isDyn, type, desc, binding, size, other, NULL, result1);
83 EXPECT_EQ(other, result1.info->visibility());
87 name, isDyn, type, desc, binding, size, other, NULL, result2);
96 EXPECT_EQ(other, result1.info->visibility());
108 ResolveInfo::Visibility other = ResolveInfo::Default; local
111 name, isDyn, type, desc, binding, size, other, NULL, result1);
120 EXPECT_EQ(other, result1.info->visibility());
124 name, isDyn, type, desc, binding, size, other, NULL, result2);
135 other,
150 uint8_t other = 0; local
176 uint8_t other = 0; local
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DDependency.java29 public Dependency(Expr dependant, Expr other) { argument
31 mOther = other;
37 public Dependency(Expr dependant, Expr other, Expr condition, boolean expectedOutput) { argument
39 mOther = other;
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DNotBindableVo.java64 public String mergeStringFields(NotBindableVo other) { argument
65 return mStringValue + (other == null ? "" : other.mStringValue);
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DSize.java105 public Size(Size other) { argument
106 if (other == null) {
109 val = new Point(other.width(), other.height());
116 * @param other The source size.
118 public Size(Camera.Size other) { argument
119 if (other == null) {
122 val = new Point(other.width, other.height);
129 * @param other Th
131 Size(android.util.Size other) argument
[all...]
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java53 * @param other The reference instance.
55 * @throws NullPointerException If {@code other} is {@code null}.
57 public Camera2RequestSettingsSet(Camera2RequestSettingsSet other) { argument
58 if (other == null) {
62 mDictionary = new HashMap<>(other.mDictionary);
63 mRevision = other.mRevision;
/frameworks/native/services/sensorservice/
H A DSensorDevice.h74 bool operator != (const BatchParams& other) { argument
75 return other.batchDelay != batchDelay || other.batchTimeout != batchTimeout ||
76 other.flags != flags;
/frameworks/base/core/java/android/content/
H A DContentValues.java102 * @param other the ContentValues from which to copy
104 public void putAll(ContentValues other) { argument
105 mValues.putAll(other.mValues);
429 * any other types to byte arrays.
H A DSyncStatusInfo.java132 public SyncStatusInfo(SyncStatusInfo other) { argument
133 authorityId = other.authorityId;
134 totalElapsedTime = other.totalElapsedTime;
135 numSyncs = other.numSyncs;
136 numSourcePoll = other.numSourcePoll;
137 numSourceServer = other.numSourceServer;
138 numSourceLocal = other.numSourceLocal;
139 numSourceUser = other.numSourceUser;
140 numSourcePeriodic = other.numSourcePeriodic;
141 lastSuccessTime = other
[all...]
/frameworks/base/core/java/android/hardware/camera2/params/
H A DMeteringRectangle.java224 public boolean equals(final Object other) { argument
225 return other instanceof MeteringRectangle && equals((MeteringRectangle)other);
234 * @param other Another MeteringRectangle
238 public boolean equals(final MeteringRectangle other) { argument
239 if (other == null) {
243 return (mX == other.mX
244 && mY == other.mY
245 && mWidth == other.mWidth
246 && mHeight == other
[all...]
H A DOutputConfiguration.java194 * @param other Another {@link OutputConfiguration} instance to be copied.
198 public OutputConfiguration(@NonNull OutputConfiguration other) { argument
199 if (other == null) {
203 this.mSurface = other.mSurface;
204 this.mRotation = other.mRotation;
205 this.mSurfaceGroupId = other.mSurfaceGroupId;
206 this.mConfiguredDataspace = other.mConfiguredDataspace;
207 this.mConfiguredFormat = other.mConfiguredFormat;
208 this.mConfiguredSize = other.mConfiguredSize;
209 this.mConfiguredGenerationId = other
[all...]
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplay.java139 public boolean equals(WifiDisplay other) { argument
140 return other != null
141 && mDeviceAddress.equals(other.mDeviceAddress)
142 && mDeviceName.equals(other.mDeviceName)
143 && Objects.equal(mDeviceAlias, other.mDeviceAlias);
147 * Returns true if the other display is not null and has the same address as this one.
151 public boolean hasSameAddress(WifiDisplay other) { argument
152 return other != null && mDeviceAddress.equals(other.mDeviceAddress);
/frameworks/base/core/java/android/util/
H A DRational.java179 * <p>A finite value occurs when the denominator is not {@code 0}; in other words
213 * other type will return {@code false}).</p>
243 private boolean equals(Rational other) { argument
244 return (mNumerator == other.mNumerator && mDenominator == other.mDenominator);
255 * <li>All other values will return {@code "numerator/denominator"} where {@code numerator}
446 * <p>{@link #NaN} is considered to be equal to itself and greater than all other
451 * <li>Positive infinity is greater than any other finite number (or negative infinity)
452 * <li>Negative infinity is less than any other finite number (or positive infinity)
454 * against the other finit
[all...]
/frameworks/base/core/java/android/view/
H A DFrameMetrics.java116 * Equal to the sum of the values of all other time-valued metric
131 * and are usually hidden by window animations or other tricks.
240 * @param other the FrameMetrics object to copy.
242 public FrameMetrics(FrameMetrics other) { argument
244 System.arraycopy(other.mTimingData, 0, mTimingData, 0, mTimingData.length);
H A DInputChannel.java54 private native void nativeTransferTo(InputChannel other); argument
80 * dispatcher and the other to the application's input queue.
119 * @param other The other input channel instance.
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DLocaleUtils.java170 public int compareTo(final ScoreEntry other) { argument
171 return -1 * compare(mScore, other.mScore); // Order by descending order.
/frameworks/base/libs/hwui/
H A DRenderProperties.cpp61 LayerProperties& LayerProperties::operator=(const LayerProperties& other) { argument
62 setType(other.type());
63 setOpaque(other.opaque());
64 setAlpha(other.alpha());
65 setXferMode(other.xferMode());
66 setColorFilter(other.colorFilter());
88 RenderProperties& RenderProperties::operator=(const RenderProperties& other) { argument
89 if (this != &other) {
90 mPrimitiveFields = other.mPrimitiveFields;
91 setStaticMatrix(other
[all...]

Completed in 7700 milliseconds

12345678