HomeSort by relevance Sort by last modified time
    Searched full:scalex (Results 126 - 150 of 308) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/skia/tests/
MatrixTest.cpp 400 SkScalar scaleX = scale.fX;
407 scaleX*c1*c2 - scaleY*s1*s2) &&
409 -scaleX*s1*c2 - scaleY*c1*s2) &&
411 scaleX*c1*s2 + scaleY*s1*c2) &&
413 -scaleX*s1*s2 + scaleY*c1*c2);
793 REPORTER_ASSERT(reporter, affineEqual(ScaleX));
  /frameworks/minikin/libs/minikin/
Layout.cpp 79 mSize(paint.size), mScaleX(paint.scaleX), mSkewX(paint.skewX),
677 double scaleX = ctx->paint.scaleX;
678 double letterSpace = ctx->paint.letterSpacing * size * scaleX;
705 hb_font_set_ppem(hbFont, size * scaleX, size);
706 hb_font_set_scale(hbFont, HBFloatToFixed(size * scaleX), HBFloatToFixed(size));
  /packages/apps/Nfc/src/com/android/nfc/
SendUi.java 238 PropertyValuesHolder preX = PropertyValuesHolder.ofFloat("scaleX", PRE_SCREENSHOT_SCALE);
245 PropertyValuesHolder postX = PropertyValuesHolder.ofFloat("scaleX", SEND_SCREENSHOT_SCALE);
260 PropertyValuesHolder scaleUpX = PropertyValuesHolder.ofFloat("scaleX", SCALE_UP_SCREENSHOT_SCALE);
415 PropertyValuesHolder postX = PropertyValuesHolder.ofFloat("scaleX",
478 PropertyValuesHolder scaleUpX = PropertyValuesHolder.ofFloat("scaleX",
489 PropertyValuesHolder postX = PropertyValuesHolder.ofFloat("scaleX",
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
_g_l_y_f.py 909 ("scalex", transform[0][0]), ("scale01", transform[0][1]),
914 ("scalex", transform[0][0]), ("scaley", transform[1][1]),
931 scalex = safeEval(attrs["scalex"])
935 self.transform = [[scalex, scale01], [scale10, scaley]]
936 elif "scalex" in attrs:
937 scalex = safeEval(attrs["scalex"])
939 self.transform = [[scalex, 0], [0, scaley]]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 102 * <dt><code>android:scaleX</code></dt>
408 float scaleX = viewportWidth / intrinsicWidth;
410 return Math.min(scaleX, scaleY);
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
image_util.js 359 * @param {number} scaleX Y scale transformation.
363 ImageUtil.drawImageTransformed = function(dst, src, scaleX, scaleY, angle) {
368 context.scale(scaleX, scaleY);
444 image, transform || { scaleX: 1, scaleY: 1, rotate90: 0});
585 context.scale(transform.scaleX, transform.scaleY);
image_view.js 228 var scaleX = canvas.width / bounds.width;
230 imageRect = new Rect(imageRect.left * scaleX, imageRect.top * scaleY,
231 imageRect.width * scaleX, imageRect.height * scaleY);
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_util.js 359 * @param {number} scaleX Y scale transformation.
363 ImageUtil.drawImageTransformed = function(dst, src, scaleX, scaleY, angle) {
368 context.scale(scaleX, scaleY);
444 image, transform || { scaleX: 1, scaleY: 1, rotate90: 0});
585 context.scale(transform.scaleX, transform.scaleY);
image_view.js 228 var scaleX = canvas.width / bounds.width;
230 imageRect = new Rect(imageRect.left * scaleX, imageRect.top * scaleY,
231 imageRect.width * scaleX, imageRect.height * scaleY);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripLayoutHelper.java 446 final float scaleX = getTextScaleX(word, width, wordView.getPaint());
448 wordView.setTextScaleX(Math.max(scaleX, MIN_TEXT_XSCALE));
638 final float scaleX = getTextScaleX(text, maxWidth, paint);
639 if (scaleX >= MIN_TEXT_XSCALE) {
640 paint.setTextScaleX(scaleX);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 348 final float scaleX = event.getXPrecision() * TRACKBALL_SCALE;
351 moveTrackball(event.getHistoricalX(i) * scaleX,
354 moveTrackball(event.getX() * scaleX, event.getY() * scaleY);
  /external/chromium_org/third_party/skia/src/core/
SkBitmapScaler.cpp 85 float scaleX = destWidth / srcFullWidth;
89 scaleX, &fXFilter, convolveProcs);
93 scaleX == scaleY) {
  /external/skia/src/core/
SkBitmapScaler.cpp 85 float scaleX = destWidth / srcFullWidth;
89 scaleX, &fXFilter, convolveProcs);
93 scaleX == scaleY) {
  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java 421 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
424 LauncherAnimUtils.ofPropertyValuesHolder(this, alpha, scaleX, scaleY);
471 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 0.9f);
474 LauncherAnimUtils.ofPropertyValuesHolder(this, alpha, scaleX, scaleY);
    [all...]
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
PictureDetailsActivity.java 149 scaleX(1).scaleY(1).
218 scaleX(mWidthScale).scaleY(mHeightScale).
  /frameworks/base/libs/hwui/
RenderProperties.h 315 bool setScaleX(float scaleX) {
316 return RP_SET_AND_DIRTY(mPrimitiveFields.mScaleX, scaleX);
  /frameworks/support/v4/java/android/support/v4/view/
ViewPropertyAnimatorCompat.java 54 public void scaleX(ViewPropertyAnimatorCompat vpa, View view, float value);
177 public void scaleX(ViewPropertyAnimatorCompat vpa, View view, float value) {
414 public void scaleX(ViewPropertyAnimatorCompat vpa, View view, float value) {
415 ViewPropertyAnimatorCompatICS.scaleX(view, value);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
Folder.java 469 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f);
472 LauncherAnimUtils.ofPropertyValuesHolder(this, alpha, scaleX, scaleY);
598 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 0.9f);
601 LauncherAnimUtils.ofPropertyValuesHolder(this, alpha, scaleX, scaleY);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyMetadata.java 147 sAdvanced.add("scaleX");
289 sCategories.put("scaleX", "Transforms");
  /development/samples/ApiDemos/res/layout/
rotating_view.xml 81 android:id="@+id/scaleX"
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
LayoutAnimations.java 159 PropertyValuesHolder.ofFloat("scaleX", 1f, 0f, 1f);
LayoutAnimationsHideShow.java 123 PropertyValuesHolder.ofFloat("scaleX", 1f, 0f, 1f);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationTranslationUtil.cpp 52 case TransformOperation::ScaleX:
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
AffineTransform.h 163 double scaleX, scaleY;
  /frameworks/base/core/java/android/view/
RenderNode.java 603 * @param scaleX The scale value of the display list
608 public boolean setScaleX(float scaleX) {
609 return nSetScaleX(mNativeRenderNode, scaleX);
882 private static native boolean nSetScaleX(long renderNode, float scaleX);
    [all...]

Completed in 630 milliseconds

1 2 3 4 56 7 8 91011>>