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

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path.java 284 * @param dx2 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) {
295 dx2 += mLastX;
297 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
322 public void rCubicTo(float dx1, float dy1, float dx2, float dy2,
329 dx2 += 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;
GridDrawManager.java 214 final float dx2 = mScaleGestureDetector.getBottomFingerDeltaX(); 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
126 dx2 = shadowSize.width();
134 clip.adjust(dx1, dx2, dy1, dy2);
  /frameworks/base/graphics/java/android/graphics/
Path.java 251 * @param dx2 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);
563 float dx2, float dy2);
  /frameworks/base/awt/java/awt/
Graphics.java 545 * @param dx2
571 public abstract boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1,
591 * @param dx2
615 public abstract boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1,
    [all...]
BasicStroke.java 1930 double dx2 = step * (step * ax * 2.0); local
2054 double dx2 = step * (step * (step * ax * 6.0 + bx * 2.0)); 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);
  /external/skia/src/core/
SkBitmapProcState_matrixProcs.cpp 163 SkFixed dx2 = dx+dx; local
164 SkFixed dx4 = dx2+dx2;
SkBitmapProcState_matrix_repeat.h 100 SkFixed dx2 = dx+dx; local
101 SkFixed dx4 = dx2+dx2;
SkBitmapProcState_matrix_clamp.h 102 SkFixed dx2 = dx+dx; local
103 SkFixed dx4 = dx2+dx2;
  /external/skia/include/core/
SkPath.h 267 @param dx2 The amount to add to the x-coordinate of the last point on
272 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
308 @param dx2 The amount to add to the x-coordinate of the last point on
  /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) {
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) {
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/core/jni/android/graphics/
Path.cpp 119 static void rQuadTo(JNIEnv* env, jobject clazz, SkPath* obj, jfloat dx1, jfloat dy1, jfloat dx2, jfloat dy2) {
122 SkScalar dx2_ = SkFloatToScalar(dx2);
  /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 1659 milliseconds