Home
last modified time | relevance | path

Searched refs:mExpected (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Uwb/service/java/com/android/server/uwb/secure/iso7816/
DCommandApdu.java75 private final ImmutableSet<StatusWord> mExpected; field in CommandApdu
117 mExpected = ImmutableSet.copyOf(exp); in CommandApdu()
119 Preconditions.checkArgument(StatusWord.areAllKnown(mExpected)); in CommandApdu()
252 return mExpected; in getExpected()
259 return mExpected.contains(actual); in acceptsStatusWord()
338 && this.mExpected.equals(other.mExpected); in equals()
346 return Objects.hashCode(mCla, mIns, mP1, mP2, Arrays.hashCode(mCdata), mLe, mExpected); in hashCode()
372 @Nullable private StatusWord[] mExpected = null; field in CommandApdu.Builder
413 this.mExpected = expected; in setExpected()
437 mExpected != null ? mExpected : new StatusWord[] {StatusWord.SW_NO_ERROR}); in build()
/packages/apps/Launcher3/quickstep/tests/multivalentTests/src/com/android/quickstep/util/
DTaskViewSimulatorTest.java253 private final Rect mExpected; field in TaskViewSimulatorTest.AlmostSame
256 mExpected = expected; in AlmostSame()
261 float errorWidth = mErrorFactor * mExpected.width(); in matchesSafely()
262 float errorHeight = mErrorFactor * mExpected.height(); in matchesSafely()
263 return Math.abs(item.left - mExpected.left) < errorWidth in matchesSafely()
264 && Math.abs(item.top - mExpected.top) < errorHeight in matchesSafely()
265 && Math.abs(item.right - mExpected.right) < errorWidth in matchesSafely()
266 && Math.abs(item.bottom - mExpected.bottom) < errorHeight; in matchesSafely()
271 description.appendValue(mExpected); in describeTo()
/packages/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/
DEchoingTextWatcher.java33 CharSequence mExpected; field in EchoingTextWatcher
42 mExpected = newText;
70 if (count == 0 || before > 0 || TextUtils.equals(s, mExpected)) { in onTextChanged()