Home
last modified time | relevance | path

Searched refs:mInt (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/liberror/
Dexpected_utils_test.cpp27 explicit Value(int i) : mInt(i) {} in Value()
31 operator int() const { return mInt; } in operator int()
34 const int mInt; member in android::foo::Value
39 explicit Status(int i) : mInt(i) {} in Status()
43 operator int() const { return mInt; } in operator int()
46 const int mInt; member in android::foo::Status
/frameworks/base/apct-tests/perftests/core/src/android/libcore/regression/
DFloatPerfTest.java35 private int mInt = 1067030938; field in FloatPerfTest
44 if (result != mInt) { in timeFloatToIntBits()
56 if (result != mInt) { in timeFloatToRawIntBits()
66 result = Float.intBitsToFloat(mInt); in timeIntBitsToFloat()
DMathPerfTest.java40 private final int mInt = 1; field in MathPerfTest
68 int result = mInt; in timeAbsI()
71 result = Math.abs(mInt); in timeAbsI()
221 int result = mInt; in timeGetExponentD()
230 int result = mInt; in timeGetExponentF()
302 int result = mInt; in timeMaxI()
305 result = Math.max(mInt, mInt); in timeMaxI()
338 int result = mInt; in timeMinI()
341 result = Math.min(mInt, mInt); in timeMinI()
428 int result = mInt; in timeRoundF()
DStrictMathPerfTest.java40 private final int mInt = 1; field in StrictMathPerfTest
95 StrictMath.abs(mInt); in timeAbsI()
291 StrictMath.max(mInt, mInt); in timeMaxI()
323 StrictMath.min(mInt, mInt); in timeMinI()
/frameworks/base/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/
DCarrierDefaultReceiverTest.java50 private ArgumentCaptor<Integer> mInt; field in CarrierDefaultReceiverTest
97 verify(mNotificationMgr, times(1)).notify(mString.capture(), mInt.capture(), in testOnReceiveRedirection()
99 assertEquals(PORTAL_NOTIFICATION_ID, (int) mInt.getValue()); in testOnReceiveRedirection()
/frameworks/base/packages/SystemUI/src/com/android/systemui/charging/
DWirelessChargingAnimation.java244 private final int mInt; field in WirelessChargingAnimation.WirelessChargingView.WirelessChargingRippleEvent
246 mInt = id; in WirelessChargingRippleEvent()
250 return mInt; in getId()