Searched refs:destX (Results 1 - 25 of 25) 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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DDrawUtils.java122 int destX = targetRectangle.x + (targetRectangle.width - newImageWidth) / 2;
124 gc.drawImage(image, 0, 0, imageWidth, imageHeight, destX, destY, newImageWidth, newImageHeight);
315 int destX = srcY;
317 int destIndex = destY * destBytesPerLine + destX * bytesPerPixel;
/external/skia/legacy/src/images/
H A DSkImageDecoder.cpp194 int sampleSize, int destX, int destY,
219 canvas.drawSprite(*src, (srcX - destX) / sampleSize,
193 cropBitmap(SkBitmap *dest, SkBitmap *src, int sampleSize, int destX, int destY, int width, int height, int srcX, int srcY) argument
/external/skia/src/images/
H A DSkImageDecoder.cpp198 int sampleSize, int destX, int destY,
223 canvas.drawSprite(*src, (srcX - destX) / sampleSize,
197 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.h348 * @param (destX, destY) the upper-left point of the dest Bitmap in terms of
352 int destX, int destY, int width, int height,
/external/skia/legacy/include/images/
H A DSkImageDecoder.h339 * @param (destX, destY) the upper-left point of the dest Bitmap in terms of
343 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);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...

Completed in 3308 milliseconds