HomeSort by relevance Sort by last modified time
    Searched full:scalex (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
animator1-expected-completion60.txt 2 scaleX : scale of the view in the x direction.
animator1.xml 17 android:propertyName="scaleX"/>
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMatrix.java 12 private float scaleX = 1;
18 // scaleX=0, skewX=1, transX=2
34 scaleX = shadowOf(src).scaleX;
62 scaleX *= sx;
68 return scaleX;
ShadowCanvas.java 29 private float scaleX = 1;
52 this.scaleX = sx;
58 this.scaleX = sx;
82 if (scaleX != 1 && scaleY != 1) {
83 appendDescription(" scaled by (" + scaleX + "," + scaleY + ")");
  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 35 private final VariableDouble scaleX;
44 * @param scaleX the variable x-scale of the image.
50 VariableDouble scaleX,
56 this.scaleX = scaleX;
68 double scale_x = scaleX.getDouble(time);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix3fTest.java 147 float scaleX = 2.0f;
150 expectedData[0] *= scaleX;
151 expectedData[1] *= scaleX;
152 expectedData[2] *= scaleX;
161 m.scale(scaleX, scaleY, scaleZ);
165 expectedData[0] *= scaleX;
166 expectedData[1] *= scaleX;
167 expectedData[2] *= scaleX;
173 m.scale(scaleX, scaleY);
Matrix4fTest.java 142 float scaleX = 2.0f;
145 expectedData[0] *= scaleX;
146 expectedData[1] *= scaleX;
147 expectedData[2] *= scaleX;
148 expectedData[3] *= scaleX;
159 m.scale(scaleX, scaleY, scaleZ);
Matrix2fTest.java 156 float scaleX = 2.0f;
158 expectedData[0] *= scaleX;
159 expectedData[1] *= scaleX;
164 m.scale(scaleX, scaleY);
  /external/replicaisland/src/com/replica/replicaisland/
ScrollableBitmap.java 37 public void draw(float x, float y, float scaleX, float scaleY) {
38 super.draw(x - mScrollOriginX, y - mScrollOriginY, scaleX, scaleY);
TiledBackgroundVertexGrid.java 37 public void draw(float x, float y, float scaleX, float scaleY) {
  /external/skia/legacy/src/animator/
SkDrawMatrix.h 53 void scale(SkScalar scaleX, SkScalar scaleY, SkPoint& center) {
54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
  /external/skia/src/animator/
SkDrawMatrix.h 53 void scale(SkScalar scaleX, SkScalar scaleY, SkPoint& center) {
54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
  /external/webkit/Source/WebCore/platform/
DragImage.cpp 58 float scalex = srcSize.width() / (float)originalSize.width(); local
61 scalex *= resizeRatio;
65 return scaleDragImage(image, FloatSize(scalex, scaley));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ScaledPathsActivity.java 84 private void drawPath(Canvas canvas, float scaleX, float scaleY) {
86 canvas.scale(scaleX, scaleY);
89 canvas.translate(mPathBounds.width() * scaleX, 0.0f);
  /packages/apps/Gallery2/jni/filters/
vignette.c 34 float scalex = 1/radiusx; local
40 float x = ((p%width)-centerx)*scalex;
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TiledTexture.java 254 // | | by (scaleX, scaleY) | +----+ |
259 RectF src, float x0, float y0, float x, float y, float scaleX,
261 output.set(x + (src.left - x0) * scaleX,
263 x + (src.right - x0) * scaleX,
273 float scaleX = (float) width / mWidth;
280 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
292 float scaleX = (float) width / mWidth;
299 mapRect(dest, src, 0, 0, x, y, scaleX, scaleY);
314 float scaleX = target.width() / source.width();
323 mapRect(dest, src, x0, y0, x, y, scaleX, scaleY)
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
timeline.js 42 get scaleX() {
45 set scaleX(s) {
216 var scaleX = w / rangeTimestamp;
218 this.viewport_.setPanAndScale(panX, scaleX);
228 child.setViewport(this.panX, this.scaleX);
249 vp.scaleX = vp.scaleX * 1.5;
255 vp.scaleX = vp.scaleX / 1.5;
261 vp.scaleX = vp.scaleX * 10
    [all...]
  /external/webkit/Source/WebCore/css/
WebKitCSSMatrix.cpp 117 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::scale(double scaleX, double scaleY, double scaleZ) const
119 if (isnan(scaleX))
120 scaleX = 1;
122 scaleY = scaleX;
125 return WebKitCSSMatrix::create(TransformationMatrix(m_matrix).scale3d(scaleX, scaleY, scaleZ));
WebKitCSSMatrix.idl 74 // Passing scaleX or scaleZ as NaN uses a value of 1, but passing scaleY of NaN
75 // makes it the same as scaleX. This allows the 3D form to used for 2D operations
76 [Immutable] WebKitCSSMatrix scale(in double scaleX, in double scaleY, in double scaleZ);
  /external/webkit/Source/WebCore/platform/graphics/
Image.cpp 92 float scaleX = 1.0f, scaleY = 1.0f;
95 scaleX = dstRect.width() / srcRect.width();
100 scaleX = scaleY;
102 scaleY = scaleX;
104 return FloatSize(scaleX, scaleY);
  /frameworks/base/libs/hwui/
TextDropShadowCache.cpp 40 hash = JenkinsHashMix(hash, android::hash_type(scaleX));
71 if (lhs.scaleX < rhs.scaleX) return -1;
72 if (lhs.scaleX > rhs.scaleX) return +1;
TextDropShadowCache.h 35 flags(0), italicStyle(0.0f), scaleX(0), text(NULL), positions(NULL) {
54 scaleX = paint->getTextScaleX();
89 float scaleX;
  /development/samples/devbytes/animation/LiveButton/src/com/example/android/livebutton/
LiveButton.java 55 scaleX(.7f).scaleY(.7f);
58 scaleX(1f).scaleY(1f);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PointTestCases.java 55 public TestLayoutCanvas(float scaleX, float scaleY, float translateX, float translateY) {
58 this.mScaleX = scaleX;
  /frameworks/base/core/java/com/android/internal/widget/
WaveView.java 222 mUnlockRing.addAnimTo(DURATION, 0, "scaleX", 0.1f, true);
228 mUnlockDefault.removeAnimationFor("scaleX");
236 mUnlockDefault.addAnimTo(DURATION, SHORT_DELAY, "scaleX", 1.0f, true);
242 mUnlockHalo.removeAnimationFor("scaleX");
252 mUnlockHalo.addAnimTo(DURATION, SHORT_DELAY, "scaleX", 1.0f, true);
270 mUnlockDefault.removeAnimationFor("scaleX");
279 mUnlockDefault.addAnimTo(DURATION, SHORT_DELAY, "scaleX", 1.0f, false);
283 mUnlockRing.addAnimTo(DURATION, 0, "scaleX", 1.0f, true);
297 mUnlockHalo.addAnimTo(0, 0, "scaleX", 1.0f, true);
314 mUnlockHalo.addAnimTo(0, 0, "scaleX", 1.0f, true)
    [all...]

Completed in 1948 milliseconds

1 2 3 4 5 6 7 8