Home
last modified time | relevance | path

Searched refs:rect (Results 1 – 11 of 11) sorted by relevance

/development/ide/xcode/ports/
DSkBitmap_Mac.cpp128 CGRect rect; in drawToPort() local
129 rect.origin.x = rect.origin.y = 0; in drawToPort()
130 rect.size.width = bm.width(); in drawToPort()
131 rect.size.height = bm.height(); in drawToPort()
133 CGContextDrawImage(cg, rect, image); in drawToPort()
DSkOSWindow_Mac.cpp84 Rect rect; in onHandleInval() local
86 rect.left = r.fLeft; in onHandleInval()
87 rect.top = r.fTop; in onHandleInval()
88 rect.right = r.fRight; in onHandleInval()
89 rect.bottom = r.fBottom; in onHandleInval()
90 InvalWindowRect((WindowRef)fHWND, &rect); in onHandleInval()
/development/perftests/panorama/feature_mos/src/mosaic/
DBlend.h107 …**frames, int nsite, int width, int height, YUVinfo &imgMos, MosaicRect &rect, MosaicRect &croppi…
108 …void ComputeMask(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &img…
109 …rThisFrame(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, d…
125 void RoundingCroppingSizeToMultipleOf8(MosaicRect& rect);
DBlend.cpp361 int width, int height, YUVinfo &imgMos, MosaicRect &rect, in DoMergeAndBlend() argument
368 …amidShort::allocatePyramidPacked(m_wb.nlevs,(unsigned short)rect.Width(),(unsigned short)rect.Heig… in DoMergeAndBlend()
369 …midShort::allocatePyramidPacked(m_wb.nlevsC,(unsigned short)rect.Width(),(unsigned short)rect.Heig… in DoMergeAndBlend()
370 …midShort::allocatePyramidPacked(m_wb.nlevsC,(unsigned short)rect.Width(),(unsigned short)rect.Heig… in DoMergeAndBlend()
398 ComputeMask(csite, mb->vcrect, mb->brect, rect, imgMos, site_idx); in DoMergeAndBlend()
556 ProcessPyramidForThisFrame(csite, mb->vcrect, mb->brect, rect, imgMos, mb->trs, site_idx); in DoMergeAndBlend()
792 void Blend::RoundingCroppingSizeToMultipleOf8(MosaicRect &rect) { in RoundingCroppingSizeToMultipleOf8() argument
793 int height = rect.bottom - rect.top + 1; in RoundingCroppingSizeToMultipleOf8()
795 rect.bottom -= residue; in RoundingCroppingSizeToMultipleOf8()
797 int width = rect.right - rect.left + 1; in RoundingCroppingSizeToMultipleOf8()
[all …]
/development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
DCustomArrayAdapter.java120 final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()); in getCroppedBitmap() local
134 canvas.drawBitmap(bitmap, rect, rect, paint); in getCroppedBitmap()
/development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
DCustomArrayAdapter.java113 final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()); in getCroppedBitmap() local
127 canvas.drawBitmap(bitmap, rect, rect, paint); in getCroppedBitmap()
/development/samples/ApiDemos/src/com/example/android/apis/view/
DInternalSelectionView.java183 public void getRectForRow(Rect rect, int row) { in getRectForRow() argument
186 rect.set(getPaddingLeft(), in getRectForRow()
/development/ndk/platforms/android-9/include/android/
Dnative_activity.h204 void (*onContentRectChanged)(ANativeActivity* activity, const ARect* rect);
/development/ndk/platforms/android-13/include/android/
Dnative_activity.h211 void (*onContentRectChanged)(ANativeActivity* activity, const ARect* rect);
/development/ndk/platforms/android-L/include/linux/
Dv4l2-subdev.h42 struct v4l2_rect rect; member
/development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DDynamicListView.java174 Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()); in getBitmapWithBorder() local
182 can.drawRect(rect, paint); in getBitmapWithBorder()