HomeSort by relevance Sort by last modified time
    Searched refs:destX (Results 1 - 25 of 55) sorted by null

1 2 3

  /frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
sample.rs 33 float destX = (float)rsAllocationGetDimX(destAlloc) - 1.0f;
37 uv.x = (float)x / destX;
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/mac/
ConvertPoint.cpp 41 double destX, destY;
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/
CGUtilities.cpp 43 CGFloat destX = destination.x - source.origin.x;
46 CGContextDrawImage(context, CGRectMake(destX, destY, imageWidth, imageHeight), image);
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 194 int destX = 0;
196 destX = -originX;
228 unsigned char* destRow = data + destY * destBytesPerRow + destX * 4;
277 int destX = destPoint.x() + sourceRect.x();
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/
PluginTest.cpp 152 bool PluginTest::NPN_ConvertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace)
154 return browser->convertpoint(m_npp, sourceX, sourceY, sourceSpace, destX, destY, destSpace);
PluginTest.h 77 bool NPN_ConvertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace);
  /frameworks/av/media/libstagefright/yuv/
YUVCanvas.cpp 71 int32_t destX = destStartX + offsetX;
79 mYUVImage.setPixelValue(destX, destY, yValue, uValue, vValue);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageOverlay.java 284 int destX = hi.translate(0);
291 destX, destY, destWidth, destHeight);
294 SwtUtils.drawRectangleShadow(gc, destX, destY, destWidth, destHeight);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 122 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/webkit/Source/WebKit/mac/Plugins/
WebBaseNetscapePluginView.h 140 toX:(double *)destX andY:(double *)destY space:(NPCoordinateSpace)destSpace;
npapi.mm 215 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];
WebBaseNetscapePluginView.mm 857 toX:(double *)destX andY:(double *)destY space:(NPCoordinateSpace)destSpace
861 if (destX)
862 *destX = sourceX;
931 if (destX)
932 *destX = destPoint.x;
  /external/skia/legacy/src/images/
SkImageDecoder.cpp 194 int sampleSize, int destX, int destY,
219 canvas.drawSprite(*src, (srcX - destX) / sampleSize,
  /external/skia/src/images/
SkImageDecoder.cpp 198 int sampleSize, int destX, int destY,
223 canvas.drawSprite(*src, (srcX - destX) / sampleSize,
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/
ImageCanvas.java 170 int destX = -selection - mOrigin.x;
172 scroll(destX, 0, 0, 0, imageBounds.width, imageBounds.height, false);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 95 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/skia/legacy/include/images/
SkImageDecoder.h 339 * @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/WebKit/mac/Plugins/Hosted/
WebKitPluginClient.defs 95 out destX :double;
NetscapePluginInstanceProxy.h 139 double& destX, double& destY, NPCoordinateSpace destSpace);
  /external/skia/include/images/
SkImageDecoder.h 348 * @param (destX, destY) the upper-left point of the dest Bitmap in terms of
352 int destX, int destY, int width, int height,
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.h 56 NPBool convertPoint(double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double& destX, double& destY, NPCoordinateSpace destSpace);
NetscapeBrowserFuncs.cpp 871 static NPBool NPN_ConvertPoint(NPP npp, double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double* destX, double* destY, NPCoordinateSpace destSpace)
880 if (destX)
881 *destX = destinationX;
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiObject.java 208 * @param destX the X-axis coordinate.
215 public boolean dragTo(int destX, int destY, int steps) throws UiObjectNotFoundException {
217 return getInteractionController().swipe(srcRect.centerX(), srcRect.centerY(), destX, destY,
    [all...]
  /external/webkit/Source/WebCore/plugins/
npfunctions.h 76 typedef NPBool (*NPN_ConvertPointProcPtr)(NPP npp, double sourceX, double sourceY, NPCoordinateSpace sourceSpace, double *destX, double *destY, NPCoordinateSpace destSpace);
  /prebuilts/sdk/current/
uiautomator.jar 

Completed in 631 milliseconds

1 2 3