Searched refs:destX (Results 1 - 19 of 19) sorted by relevance

/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/mac/
H A DConvertPoint.cpp41 double destX, destY; local
42 if (!NPN_ConvertPoint(x, y, sourceSpace, &destX, &destY, destSpace))
47 if (!NPN_ConvertPoint(destX, destY, destSpace, &srcX, &srcY, sourceSpace))
/external/webkit/Source/WebKit2/Platform/cg/
H A DCGUtilities.cpp43 CGFloat destX = destination.x - source.origin.x; local
46 CGContextDrawImage(context, CGRectMake(destX, destY, imageWidth, imageHeight), image);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DImageBufferSkia.cpp194 int destX = 0; local
196 destX = -originX;
228 unsigned char* destRow = data + destY * destBytesPerRow + destX * 4;
277 int destX = destPoint.x() + sourceRect.x(); local
278 ASSERT(destX >= 0);
279 ASSERT(destX < size.width());
286 int numColumns = endX - destX;
313 deviceBitmap.extractSubset(&destBitmap, SkIRect::MakeXYWH(destX, destY, numColumns, numRows));
336 dstDevice->writePixels(destBitmap, destX, destY);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DPluginTest.cpp152 bool PluginTest::NPN_ConvertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace) argument
154 return browser->convertpoint(m_npp, sourceX, sourceY, sourceSpace, destX, destY, destSpace);
H A DPluginTest.h77 bool NPN_ConvertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace);
/external/skia/src/images/
H A DSkImageDecoder.cpp207 int sampleSize, int destX, int destY,
212 (srcX - destX) / sampleSize == 0 && (srcY - destY) / sampleSize == 0) {
222 canvas.drawBitmap(*src, (srcX - destX) / sampleSize,
206 cropBitmap(SkBitmap *dest, SkBitmap *src, int sampleSize, int destX, int destY, int width, int height, int srcX, int srcY) argument
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
H A DNetscapePluginMac.mm95 NPBool NetscapePlugin::convertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double& destX, double& destY, NPCoordinateSpace destSpace)
98 destX = sourceX;
135 destX = sourceXInScreenSpace - (m_windowFrameInScreenCoordinates.x() + m_viewFrameInWindowCoordinates.x() + m_npWindow.x);
139 destX = sourceXInScreenSpace - m_windowFrameInScreenCoordinates.x();
143 destX = sourceXInScreenSpace - m_windowFrameInScreenCoordinates.x();
148 destX = sourceXInScreenSpace;
152 destX = sourceXInScreenSpace;
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebBaseNetscapePluginView.h140 toX:(double *)destX andY:(double *)destY space:(NPCoordinateSpace)destSpace;
H A Dnpapi.mm215 NPBool NPN_ConvertPoint(NPP instance, double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace)
217 return [pluginViewForInstance(instance) convertFromX:sourceX andY:sourceY space:sourceSpace toX:destX andY:destY space:destSpace];
H A DWebBaseNetscapePluginView.mm857 toX:(double *)destX andY:(double *)destY space:(NPCoordinateSpace)destSpace
861 if (destX)
862 *destX = sourceX;
931 if (destX)
932 *destX = destPoint.x;
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DWebKitPluginClient.defs95 out destX :double;
H A DNetscapePluginInstanceProxy.h139 double& destX, double& destY, NPCoordinateSpace destSpace);
H A DNetscapePluginHostProxy.mm1055 uint32_t destSpace, boolean_t *returnValue, double *destX, double *destY)
1066 *destX, *destY, static_cast<NPCoordinateSpace>(destSpace));
H A DNetscapePluginInstanceProxy.mm1593 double& destX, double& destY, NPCoordinateSpace destSpace)
1597 return [m_pluginView convertFromX:sourceX andY:sourceY space:sourceSpace toX:&destX andY:&destY space:destSpace];
/external/skia/include/images/
H A DSkImageDecoder.h346 * @param (destX, destY) the upper-left point of the dest Bitmap in terms of
350 int destX, int destY, int width, int height,
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNetscapePlugin.h56 NPBool convertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double& destX, double& destY, NPCoordinateSpace destSpace);
H A DNetscapeBrowserFuncs.cpp871 static NPBool NPN_ConvertPoint(NPP npp, double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double* destX, double* destY, NPCoordinateSpace destSpace) argument
880 if (destX)
881 *destX = destinationX;
/external/webkit/Source/WebCore/plugins/
H A Dnpfunctions.h76 typedef NPBool (*NPN_ConvertPointProcPtr)(NPP npp, double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace);
/external/webkit/Source/WebCore/bridge/
H A Dnpapi.h905 NPBool NP_LOADDS NPN_ConvertPoint(NPP instance, double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace);

Completed in 367 milliseconds