Home
last modified time | relevance | path

Searched refs:mc (Results 1 – 9 of 9) 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/core/java/android/webkit/
DHTML5VideoFullScreen.java178 MediaController mc = new FullScreenMediaController(mProxy.getContext(), mLayout); in prepareForFullScreen() local
179 mc.setSystemUiVisibility(mLayout.getSystemUiVisibility()); in prepareForFullScreen()
180 setMediaController(mc); in prepareForFullScreen()
/frameworks/support/renderscript/v8/rs_support/
DrsAllocation.h78 RsAllocationMipmapControl mc = RS_ALLOCATION_MIPMAP_NONE,
149 … Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc, void *ptr);
DrsAllocation.cpp26 RsAllocationMipmapControl mc, void * ptr) in Allocation() argument
32 mHal.state.mipmapControl = mc; in Allocation()
39 RsAllocationMipmapControl mc, void * ptr) { in createAllocation() argument
40 Allocation *a = new Allocation(rsc, type, usages, mc, ptr); in createAllocation()
/frameworks/rs/
DrsAllocation.h81 RsAllocationMipmapControl mc = RS_ALLOCATION_MIPMAP_NONE,
158 … Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc, void *ptr);
DrsAllocation.cpp29 RsAllocationMipmapControl mc, void * ptr) in Allocation() argument
35 mHal.state.mipmapControl = mc; in Allocation()
42 RsAllocationMipmapControl mc, void * ptr) { in createAllocation() argument
43 Allocation *a = new Allocation(rsc, type, usages, mc, ptr); in createAllocation()
/frameworks/av/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
/frameworks/base/core/java/android/app/
DActivity.java1814 ManagedCursor mc = mManagedCursors.get(i); in stopManagingCursor() local
1815 if (mc.mCursor == c) { in stopManagingCursor()
5146 ManagedCursor mc = mManagedCursors.get(i); in performRestart() local
5147 if (mc.mReleased || mc.mUpdated) { in performRestart()
5148 if (!mc.mCursor.requery()) { in performRestart()
5153 + mc.mCursor); in performRestart()
5156 mc.mReleased = false; in performRestart()
5157 mc.mUpdated = false; in performRestart()
5256 ManagedCursor mc = mManagedCursors.get(i); in performStop() local
5257 if (!mc.mReleased) { in performStop()
[all …]