Searched refs:mExpected (Results 1 – 3 of 3) sorted by relevance
75 private final ImmutableSet<StatusWord> mExpected; field in CommandApdu117 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.Builder413 this.mExpected = expected; in setExpected()437 mExpected != null ? mExpected : new StatusWord[] {StatusWord.SW_NO_ERROR}); in build()
253 private final Rect mExpected; field in TaskViewSimulatorTest.AlmostSame256 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()
33 CharSequence mExpected; field in EchoingTextWatcher42 mExpected = newText;70 if (count == 0 || before > 0 || TextUtils.equals(s, mExpected)) { in onTextChanged()