/external/webkit/Source/WebKit2/Platform/cg/ |
CGUtilities.cpp | 40 size_t imageHeight = CGImageGetHeight(image); 44 CGFloat destY = -static_cast<CGFloat>(imageHeight) - destination.y + source.origin.y; 46 CGContextDrawImage(context, CGRectMake(destX, destY, imageWidth, imageHeight), image);
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
GraphicsContext3DCairo.cpp | 87 void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int canvasHeight, PlatformContextCairo* context) 89 if (!imagePixels || imageWidth <= 0 || imageHeight <= 0 || canvasWidth <= 0 || canvasHeight <= 0 || !context) 100 const_cast<unsigned char*>(imagePixels), CAIRO_FORMAT_ARGB32, imageWidth, imageHeight, imageWidth * 4)); 103 cairo_translate(cr, 0, imageHeight);
|
/external/webkit/Source/WebCore/platform/chromium/ |
DragImageChromiumSkia.cpp | 63 int imageHeight = scale.height() * image->height(); 66 imageWidth, imageHeight));
|
/external/opencv/cv/src/ |
cvoptflowhs.cpp | 108 int imageHeight = imgSize.height; 177 BufferSize = imageHeight * imageWidth; 215 for( i = 1; i < imageHeight - 1; i++ ) 226 MemX[0][imageHeight - 1] = 227 MemX[1][imageHeight - 1] = CONV( imgA[pixNumber - imgStep], 238 LastLine = imgStep * (imageHeight - 1); 239 while( ConvLine < imageHeight ) 326 for( i = 0; i < imageHeight; i++ ) 340 LastLine = velStep * (imageHeight - 1); 351 for( i = 0; i < imageHeight; i++ [all...] |
cvoptflowlk.cpp | 111 int imageHeight = imgSize.height; 156 if( imageHeight < winHeight ) 252 for( i = 1; i < imageHeight - 1; i++ ) 263 MemX[0][imageHeight - 1] = 264 MemX[1][imageHeight - 1] = CONV( imgA[pixNumber - imgStep], 276 while( PixelLine < imageHeight ) 278 if( ConvLine < imageHeight ) 292 if( L3 >= imageHeight ) 293 L3 = imageHeight - 1; 464 if( PixelLine >= imageHeight - VerRadius [all...] |
/external/webkit/Source/WebCore/platform/graphics/cg/ |
GraphicsContext3DCG.cpp | 257 void GraphicsContext3D::paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, int canvasWidth, int canvasHeight, CGContextRef context) 259 if (!imagePixels || imageWidth <= 0 || imageHeight <= 0 || canvasWidth <= 0 || canvasHeight <= 0 || !context) 262 RetainPtr<CGDataProviderRef> dataProvider(AdoptCF, CGDataProviderCreateWithData(0, imagePixels, rowBytes * imageHeight, 0)); 263 RetainPtr<CGImageRef> cgImage(AdoptCF, CGImageCreate(imageWidth, imageHeight, 8, 32, rowBytes, deviceRGBColorSpaceRef(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host,
|
/sdk/assetstudio/tests/src/com/android/assetstudiolib/ |
GeneratorTest.java | 109 int imageHeight = Math.min(goldenImage.getHeight(), image.getHeight()); 118 int height = imageHeight; 124 for (int y = 0; y < imageHeight; y++) { 159 long total = imageHeight * imageWidth * 3L * 256L;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ImageControl.java | 154 int imageHeight = imageRect.height; 157 int destHeight = imageHeight; 168 gc.drawImage(mImage, 0, 0, imageWidth, imageHeight, rect.x + mLeftMargin, rect.y
|
/packages/apps/Gallery/src/com/android/camera/ |
GalleryPicker.java | 621 int imageWidth, int widthPadding, int imageHeight, 628 int yPos = (row * (imageHeight + heightPadding)) - offsetY; 644 int imageHeight = height; 650 imageHeight = (imageHeight - padding) / 2; // per row and column 705 imageHeight, true, Util.RECYCLE_INPUT); 708 Bitmap thumb = Bitmap.createBitmap(imageWidth, imageHeight, 714 mCellOutline.setBounds(0, 0, imageWidth, imageHeight); 717 placeImage(thumb, c, pdpaint, imageWidth, padding, imageHeight,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtUtilsTest.java | 325 * @param imageHeight the height of the target image 328 private Image createSampleImage(int imageWidth, int imageHeight) { 332 ImageData data = new ImageData(imageWidth, imageHeight, 32, new PaletteData(0x00FF0000, 334 for (int y = 0; y < imageHeight; y++) {
|
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/ |
xf86dga.h | 69 int imageHeight;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
GlobalScreenshot.java | 119 int imageHeight = data.image.getHeight(); 122 if (imageWidth > imageHeight) { 123 iconWidth = (int) (((float) iconHeight / imageHeight) * imageWidth); 125 iconHeight = (int) (((float) iconWidth / imageWidth) * imageHeight);
|
/prebuilt/common/ninepatch/ |
ninepatch-prebuilt.jar | |
/external/webkit/Source/WebCore/rendering/ |
RenderBoxModelObject.cpp | [all...] |
/sdk/ninepatch/src/com/android/ninepatch/ |
NinePatchChunk.java | 360 private List<Rectangle> getVerticalRectangles(int imageHeight, 367 rectangles.add(new Rectangle(x, 0, width, imageHeight));
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
AppsCustomizePagedView.java | [all...] |
/external/v8/benchmarks/ |
raytrace.js | 881 var imageHeight = 100; // $F('imageHeight'); 892 canvasHeight: imageHeight,
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-raytrace.js | 907 var imageHeight = 100; // $F('imageHeight'); 918 canvasHeight: imageHeight,
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-raytrace.js | 907 var imageHeight = 100; // $F('imageHeight'); 918 canvasHeight: imageHeight,
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-raytrace.js | 876 var imageHeight = 100; // $F('imageHeight'); 887 canvasHeight: imageHeight,
|
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/ |
XF86DGA2.c | 323 modes[i].imageHeight = info.image_height; 401 dev->mode.imageHeight = info.image_height;
|
/external/qemu/distrib/sdl-1.2.12/src/video/dga/ |
SDL_dgavideo.c | 546 surfaces_len = (mode->mode.imageHeight*current->pitch - screen_len); 551 if ( mode->mode.imageHeight >= (current->h*2) ) {
|
/external/webkit/Source/WebCore/platform/graphics/ |
GraphicsContext3D.h | 766 void paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, 769 void paintToCanvas(const unsigned char* imagePixels, int imageWidth, int imageHeight, [all...] |
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/ |
xf86str.h | 787 int imageHeight; [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
VideoEditorStressTest.java | 678 final int imageHeight = MediaProperties.HEIGHT_480; 719 imageHeight, mediaItem2.getHeight()); [all...] |