Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/util/
DDayOfMonthCursorTest.java31 DayOfMonthCursor mc = new DayOfMonthCursor(2007, in testMonthRows() local
35 mc.getDigitsForRow(0)); in testMonthRows()
37 mc.getDigitsForRow(1)); in testMonthRows()
39 mc.getDigitsForRow(5)); in testMonthRows()
44 DayOfMonthCursor mc = new DayOfMonthCursor(2007, in testMoveLeft() local
47 assertEquals(Calendar.SEPTEMBER, mc.getMonth()); in testMoveLeft()
48 assertEquals(3, mc.getSelectedDayOfMonth()); in testMoveLeft()
49 assertEquals(1, mc.getSelectedRow()); in testMoveLeft()
50 assertEquals(1, mc.getSelectedColumn()); in testMoveLeft()
53 assertFalse(mc.left()); in testMoveLeft()
[all …]
/frameworks/base/libs/rs/
DrsAllocation.h69 RsAllocationMipmapControl mc = RS_ALLOCATION_MIPMAP_NONE);
132 Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc);
DrsAllocation.cpp25 RsAllocationMipmapControl mc) in Allocation() argument
31 mHal.state.mipmapControl = mc; in Allocation()
38 RsAllocationMipmapControl mc) { in createAllocation() argument
39 Allocation *a = new Allocation(rsc, type, usages, mc); in createAllocation()
/frameworks/base/core/java/android/app/
DActivity.java1769 ManagedCursor mc = mManagedCursors.get(i); in stopManagingCursor() local
1770 if (mc.mCursor == c) { in stopManagingCursor()
4503 ManagedCursor mc = mManagedCursors.get(i); in performRestart() local
4504 if (mc.mReleased || mc.mUpdated) { in performRestart()
4505 if (!mc.mCursor.requery()) { in performRestart()
4510 + mc.mCursor); in performRestart()
4513 mc.mReleased = false; in performRestart()
4514 mc.mUpdated = false; in performRestart()
4613 ManagedCursor mc = mManagedCursors.get(i); in performStop() local
4614 if (!mc.mReleased) { in performStop()
[all …]
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
Dvop.cpp569 currVol->complexity.mc = BitstreamReadBits16(stream, 6); in DecodeVOLHeader()
927 if ((currVol->complexity.mc >> 5) & 0x1) /* apm */ in DecodeVOPHeader()
929 if ((currVol->complexity.mc >> 4) & 0x1) /* npm */ in DecodeVOPHeader()
932 if ((currVol->complexity.mc >> 2) & 0x1) /* forw_back_mc_q */ in DecodeVOPHeader()
934 if ((currVol->complexity.mc >> 1) & 0x1) /* halfpel2 */ in DecodeVOPHeader()
936 if (currVol->complexity.mc & 0x1) /* halfpel4 */ in DecodeVOPHeader()
941 if ((currVol->complexity.mc >> 3) & 0x1) /* interpolate_mc_q */ in DecodeVOPHeader()
Dmp4lib_int.h52 uint8 mc; /* motion_compensation_complexity */ member