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

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path.java 286 * @param dy2 The amount to add to the y-coordinate of the last point on
289 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) {
296 dy2 += mLastY;
297 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
322 public void rCubicTo(float dx1, float dy1, float dx2, float dy2,
330 dy2 += mLastY;
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) {
308 float dy = dy2 * seedFactor + (1.0f - seedFactor) * dy1;
GridDrawManager.java 215 final float dy2 = mScaleGestureDetector.getBottomFingerDeltaY(); 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
130 dy2 = shadowSize.height();
134 clip.adjust(dx1, dx2, dy1, dy2);
  /frameworks/base/graphics/java/android/graphics/
Path.java 253 * @param dy2 The amount to add to the y-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 548 * @param dy2
571 public abstract boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1,
594 * @param dy2
615 public abstract boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1,
    [all...]
BasicStroke.java 1931 double dy2 = step * (step * ay * 2.0); local
2055 double dy2 = step * (step * (step * ay * 6.0 + by * 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/include/core/
SkPath.h 269 @param dy2 The amount to add to the y-coordinate of the last point on
272 void rQuadTo(SkScalar dx1, SkScalar dy1, SkScalar dx2, SkScalar dy2);
310 @param dy2 The amount to add to the y-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) {
902 int dstH = dy2 - dy1;
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) {
434 int dstH = dy2 - dy1;
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) {
123 SkScalar dy2_ = SkFloatToScalar(dy2);
  /prebuilt/common/jfreechart/
jfreechart-1.0.9-swt.jar 
  /external/icu4c/test/intltest/
calregts.cpp 2230 int32_t dy2 = cal2->fieldDifference(date2, Calendar::YEAR, ec2); local
    [all...]
  /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 617 milliseconds