Home
last modified time | relevance | path

Searched refs:sourceY (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
Dloupe.js118 var sourceY = y + j;
120 var sourceR = readPixelComponent(sourceX, sourceY, 0);
121 var sourceG = readPixelComponent(sourceX, sourceY, 1);
122 var sourceB = readPixelComponent(sourceX, sourceY, 2);
123 var sourceA = readPixelComponent(sourceX, sourceY, 3)/255;
136 $('loupe-coordinate').textContent = sourceX + ', ' + sourceY;
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
DPluginTest.cpp152 bool PluginTest::NPN_ConvertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, do… in NPN_ConvertPoint() argument
154 return browser->convertpoint(m_npp, sourceX, sourceY, sourceSpace, destX, destY, destSpace); in NPN_ConvertPoint()
DPluginTest.h77 …bool NPN_ConvertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX…
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
DNetscapePluginMac.mm95 NPBool NetscapePlugin::convertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, …
99 destY = sourceY;
110 …wFrameInWindowCoordinates.y() + m_viewFrameInWindowCoordinates.height() - (sourceY + m_npWindow.y);
114 sourceYInScreenSpace = sourceY + m_windowFrameInScreenCoordinates.y();
118 …Space = m_windowFrameInScreenCoordinates.y() + m_windowFrameInScreenCoordinates.height() - sourceY;
122 sourceYInScreenSpace = sourceY;
126 sourceYInScreenSpace = flipScreenYCoordinate(sourceY);
/external/webkit/Source/WebCore/platform/graphics/wince/
DSharedBitmap.cpp361 for (int sourceY = phase.y; dstY < destRect.bottom; ) { in drawPatternSimple() local
362 int sourceH = std::min<int>(bmpSize.cy - sourceY, destRect.bottom - dstY); in drawPatternSimple()
367 StretchDIBits(hdc, dstX, dstY, sourceW, sourceH, sourceX, sourceY, sourceW, sourceH, in drawPatternSimple()
375 sourceY = 0; in drawPatternSimple()
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/
DJPEGImageDecoder.cpp480 int sourceY = info->output_scanline; in outputScanlines() local
485 int destY = scaledY(sourceY); in outputScanlines()
/external/webkit/Source/WebKit/mac/Plugins/
DWebBaseNetscapePluginView.h139 - (BOOL)convertFromX:(double)sourceX andY:(double)sourceY space:(NPCoordinateSpace)sourceSpace
Dnpapi.mm215 NPBool NPN_ConvertPoint(NPP instance, double sourceX, double sourceY, NPCoordinateSpace sourceSpace…
217 …return [pluginViewForInstance(instance) convertFromX:sourceX andY:sourceY space:sourceSpace toX:de…
DWebBaseNetscapePluginView.mm856 - (BOOL)convertFromX:(double)sourceX andY:(double)sourceY space:(NPCoordinateSpace)sourceSpace
864 *destY = sourceY;
868 NSPoint sourcePoint = NSMakePoint(sourceX, sourceY);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DNetscapePlugin.h56 …NPBool convertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double& destX, …
DNetscapeBrowserFuncs.cpp871 static NPBool NPN_ConvertPoint(NPP npp, double sourceX, double sourceY, NPCoordinateSpace sourceSpa… in NPN_ConvertPoint() argument
878 …bool returnValue = plugin->convertPoint(sourceX, sourceY, sourceSpace, destinationX, destinationY,… in NPN_ConvertPoint()
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
DWebKitPluginClient.defs91 sourceY :double;
DNetscapePluginInstanceProxy.h138 bool convertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace,
DNetscapePluginHostProxy.mm1054 double sourceX, double sourceY, uint32_t sourceSpace,
1065 …*returnValue = instanceProxy->convertPoint(sourceX, sourceY, static_cast<NPCoordinateSpace>(source…
DNetscapePluginInstanceProxy.mm1592 bool NetscapePluginInstanceProxy::convertPoint(double sourceX, double sourceY, NPCoordinateSpace so…
1597 …return [m_pluginView convertFromX:sourceX andY:sourceY space:sourceSpace toX:&destX andY:&destY sp…
/external/webkit/Source/WebCore/plugins/
Dnpfunctions.h76 typedef NPBool (*NPN_ConvertPointProcPtr)(NPP npp, double sourceX, double sourceY, NPCoordinateSpac…
/external/webkit/Source/WebCore/bridge/
Dnpapi.h905 NPBool NP_LOADDS NPN_ConvertPoint(NPP instance, double sourceX, double sourceY, NPCoordinateSp…