HomeSort by relevance Sort by last modified time
    Searched refs:dx1 (Results 1 - 23 of 23) sorted by null

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path.java 280 * @param dx1 The amount to add to the x-coordinate of the last point on
289 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
293 dx1 += mLastX;
297 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
322 public void rCubicTo(float dx1, float dy1, float dx2, float dy2,
327 dx1 += mLastX;
333 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
  /packages/apps/Gallery3D/src/com/cooliris/media/
DisplayList.java 57 public final void setOffset(DisplayItem item, boolean useOffset, boolean pushDown, float span, float dx1, float dy1, float dx2, float dy2) {
58 item.setOffset(useOffset, pushDown, span, dx1, dy1, dx2, dy2);
DisplayItem.java 271 public final void setOffset(boolean useOffset, boolean pushDown, float span, float dx1, float dy1, float dx2, float dy2) {
307 float dx = dx2 * seedFactor + (1.0f - seedFactor) * dx1;
Util.java 119 int dx1 = Math.max(0, b1.getWidth() - targetWidth); local
122 Bitmap b2 = Bitmap.createBitmap(b1, dx1 / 2, dy1 / 2, targetWidth, targetHeight);
GridDrawManager.java 212 final float dx1 = mScaleGestureDetector.getTopFingerDeltaX(); local
218 displayList.setOffset(displayItem, false, true, span, dx1, dy1, dx2, dy2);
223 displayList.setOffset(displayItem, true, false, span, dx1, dy1, dx2, dy2);
225 displayList.setOffset(displayItem, true, true, span, dx1, dy1, dx2, dy2);
227 displayList.setOffset(displayItem, false, false, span, dx1, dy1, dx2, dy2);
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
FontQt.cpp 124 qreal dx1 = 0, dx2 = 0, dy1 = 0, dy2 = 0; local
128 dx1 = -shadowSize.width();
134 clip.adjust(dx1, dx2, dy1, dy2);
  /frameworks/base/graphics/java/android/graphics/
Path.java 247 * @param dx1 The amount to add to the x-coordinate of the last point on
256 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
257 native_rQuadTo(mNativePath, dx1, dy1, dx2, dy2);
562 private static native void native_rQuadTo(int nPath, float dx1, float dy1,
  /frameworks/base/awt/java/awt/
Graphics.java 539 * @param dx1
571 public abstract boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1,
585 * @param dx1
615 public abstract boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1,
    [all...]
BasicStroke.java 1468 double px1, py1, dx1, dy1; local
1614 double dx1 = t * (t * (ax + ax + ax) + bx + bx) + cx; local
1928 double dx1 = step * (step * ax + bx); local
2052 double dx1 = step * (step * (step * ax + bx) + cx); local
    [all...]
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 294 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
296 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer);
299 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
301 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer);
  /frameworks/base/awt/com/android/internal/awt/
AndroidGraphics2D.java 867 public boolean drawImage(Image image, int dx1, int dy1, int dx2, int dy2,
874 if(dx1 == dx2 || dy1 == dy2 || sx1 == sx2 || sy1 == sy2) {
896 int dstX = dx1;
901 int dstW = dx2 - dx1;
922 public boolean drawImage(Image image, int dx1, int dy1, int dx2, int dy2,
925 return drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null,
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/
CommonGraphics2D.java 399 public boolean drawImage(Image image, int dx1, int dy1, int dx2, int dy2,
406 if(dx1 == dx2 || dy1 == dy2 || sx1 == sx2 || sy1 == sy2) {
428 int dstX = dx1;
433 int dstW = dx2 - dx1;
454 public boolean drawImage(Image image, int dx1, int dy1, int dx2, int dy2,
457 return drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null,
    [all...]
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 412 int dx1 = Math.max(0, b1.getWidth() - targetWidth); local
417 dx1 / 2,
  /packages/apps/Gallery/src/com/android/camera/
Util.java 224 int dx1 = Math.max(0, b1.getWidth() - targetWidth); local
229 dx1 / 2,
  /external/skia/include/core/
SkPath.h 263 @param dx1 The amount to add to the x-coordinate of the last point on
272 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
304 @param dx1 The amount to add to the x-coordinate of the last point on
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzEvents.m 846 CGMouseDelta dx1, dy1;
847 CGGetLastMouseDelta (&dx1, &dy1);
848 dx += dx1;
    [all...]
  /frameworks/base/core/jni/android/graphics/
Path.cpp 119 static void rQuadTo(JNIEnv* env, jobject clazz, SkPath* obj, jfloat dx1, jfloat dy1, jfloat dx2, jfloat dy2) {
120 SkScalar dx1_ = SkFloatToScalar(dx1);
  /external/qemu/hw/
usb-hid.c 416 int dx1, int dy1, int dz1, int buttons_state)
421 s->dx += dx1;
  /prebuilt/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /external/quake/quake/src/QW/scitech/include/
mgraph.h     [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H     [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 675 milliseconds