HomeSort by relevance Sort by last modified time
    Searched full:scale (Results 26 - 50 of 4641) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
viewport-initial-scale-less-than-1-device-width.html 3 <meta name='viewport' content='width=device-width,target-densitydpi=device-dpi,initial-scale=0.25' />
6 A page with a viewport set to device-dpi and device width, scale < 1.
viewport-initial-scale-less-than-1.html 3 <meta name='viewport' content='width=320,target-densitydpi=device-dpi,initial-scale=0.25' />
6 A page with a viewport set to device-dpi and fixed width, scale < 1.
viewport-target-densitydpi-device-and-fixed-width.html 3 <meta name='viewport' content='width=640,target-densityDpi=device-dpi,initial-scale=1.0' />
6 A page with a viewport set to device-dpi and fixed width, fixed scale.
find_in_page.html 4 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  /frameworks/base/core/java/android/view/
MagnificationSpec.java 33 public float scale = 1.0f; field in class:MagnificationSpec
41 public void initialize(float scale, float offsetX, float offsetY) {
42 if (scale < 1) {
43 throw new IllegalArgumentException("Scale must be greater than or equal to one!");
45 this.scale = scale;
51 return scale == 1.0f && offsetX == 0 && offsetY == 0;
56 info.scale = other.scale;
73 scale = 1.0f
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkLerpXfermode.h 16 * result = scale * src + (1 - scale) * dst
18 * When scale == 1, this is the same as kSrc_Mode
19 * When scale == 0, this is the same as kDst_Mode
21 static SkXfermode* Create(SkScalar scale);
SkTestImageFilters.h 10 SkDownSampleImageFilter(SkScalar scale) : INHERITED(0), fScale(scale) {}
  /external/skia/include/effects/
SkLerpXfermode.h 16 * result = scale * src + (1 - scale) * dst
18 * When scale == 1, this is the same as kSrc_Mode
19 * When scale == 0, this is the same as kDst_Mode
21 static SkXfermode* Create(SkScalar scale);
  /external/skia/tests/
ImageCacheTest.cpp 25 SkScalar scale = 2; local
30 id = cache.findAndLock(bm[i], scale, scale, &tmp);
34 id = cache.addAndLock(bm[i], scale, scale, tmp);
38 SkScaledImageCache::ID* id2 = cache.findAndLock(bm[i], scale, scale,
51 scale += 1;
56 id = cache.addAndLock(bm[0], scale, scale, tmp)
    [all...]
  /external/qemu/android/skin/
scaler.c 17 double scale; member in struct:SkinScaler
28 _scaler0.scale = 1.0;
35 /* change the scale of a given scaler. returns 0 on success, or -1 in case of
36 * problem (unsupported scale) */
38 skin_scaler_set( SkinScaler* scaler, double scale, double xdisp, double ydisp )
41 if (scale < 0.1)
42 scale = 0.1;
43 else if (scale > 6.0)
44 scale = 6.0;
46 scaler->scale = scale
71 double scale; member in struct:__anon26525
92 double scale = scaler->scale; local
    [all...]
  /external/chromium_org/ppapi/api/dev/
ppb_graphics_2d_dev.idl 17 * SetScale() sets the scale factor that will be applied when painting the
21 * scale of 1.0 / GetDeviceScale(). For example, if the view resource passed
22 * to DidChangeView has a rectangle of (w=200, h=100) and a device scale of
28 * @param[in] scale The scale to apply when painting.
31 * the resource is invalid or the scale factor is 0 or less.
35 [in] float_t scale);
38 * GetScale() gets the scale factor that will be applied when painting the
43 * @return Returns the scale factor for the graphics context. If the resource
  /external/chromium_org/ppapi/cpp/dev/
graphics_2d_dev.h 29 /// SetScale() sets the scale factor that will be applied when painting the
33 /// scale of 1.0 / GetDeviceScale(). For example, if the view resource passed
34 /// to DidChangeView has a rectangle of (w=200, h=100) and a device scale of
39 /// @param[in] scale The scale to apply when painting.
42 /// if the resource is invalid or the scale factor is 0 or less.
43 bool SetScale(float scale);
45 /// GetScale() gets the scale factor that will be applied when painting the
48 /// @return Returns the scale factor for the graphics context. If the resource
  /external/chromium_org/ui/gfx/
point_f.h 23 void Scale(float scale) {
24 Scale(scale, scale);
27 void Scale(float x_scale, float y_scale) {
65 inline PointF ScalePoint(const PointF& p, float scale) {
66 return ScalePoint(p, scale, scale);
vector3d_f.h 64 // Scale all components of the vector by |scale|.
65 void Scale(float scale) { Scale(scale, scale, scale); }
66 // Scale the each component of the vector by the given scale factors
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_norm_tmp.h 36 * scale - uniform scale factor of the transformation matrix (not always used)
44 GLfloat scale,
71 GLfloat scale = INV_SQRTF(len); local
72 out[i][0] = tx * scale;
73 out[i][1] = ty * scale;
74 out[i][2] = tz * scale;
83 if (scale != 1.0) {
84 m0 *= scale, m4 *= scale, m8 *= scale
138 GLfloat scale = INV_SQRTF(len); local
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkLerpXfermode.cpp 13 SkXfermode* SkLerpXfermode::Create(SkScalar scale) {
14 int scale256 = SkScalarRoundToInt(scale * 256);
37 const int scale = fScale256; local
44 SkPMColor resC = SkFastFourByteInterp256(src[i], dstC, scale);
53 dst[i] = SkFastFourByteInterp256(src[i], dst[i], scale);
60 const int scale = fScale256; local
67 SkPMColor resC = SkFastFourByteInterp256(src[i], dstC, scale);
77 SkPMColor resC = SkFastFourByteInterp256(src[i], dstC, scale);
85 const int scale = fScale256; local
92 unsigned resA = SkAlphaBlend(SkGetPackedA32(src[i]), dstA, scale);
    [all...]
SkTestImageFilters.cpp 26 SkScalar scale = fScale; local
27 if (scale > SK_Scalar1 || scale <= 0) {
31 int dstW = SkScalarRoundToInt(src.width() * scale);
32 int dstH = SkScalarRoundToInt(src.height() * scale);
52 canvas.scale(scale, scale);
  /external/mesa3d/src/mesa/math/
m_norm_tmp.h 36 * scale - uniform scale factor of the transformation matrix (not always used)
44 GLfloat scale,
71 GLfloat scale = INV_SQRTF(len); local
72 out[i][0] = tx * scale;
73 out[i][1] = ty * scale;
74 out[i][2] = tz * scale;
83 if (scale != 1.0) {
84 m0 *= scale, m4 *= scale, m8 *= scale
138 GLfloat scale = INV_SQRTF(len); local
    [all...]
  /external/skia/gm/
shaderbounds.cpp 44 SkScalar scale = SkFloatToScalar(0.8f); variable
45 result.setScale(scale, scale);
57 SkScalar scale = SkFloatToScalar(0.7f); local
58 canvasScale.setScale(scale, scale);
77 SkScalar scale = SkFloatToScalar(0.5f); local
79 scale = SkFloatToScalar(0.6f);
81 SkScalar shaderWidth = SkScalarDiv(SkIntToScalar(width), scale);
82 SkScalar shaderHeight = SkScalarDiv(SkIntToScalar(height), scale);
    [all...]
  /external/skia/src/effects/
SkLerpXfermode.cpp 13 SkXfermode* SkLerpXfermode::Create(SkScalar scale) {
14 int scale256 = SkScalarRoundToInt(scale * 256);
37 const int scale = fScale256; local
44 SkPMColor resC = SkFastFourByteInterp256(src[i], dstC, scale);
53 dst[i] = SkFastFourByteInterp256(src[i], dst[i], scale);
60 const int scale = fScale256; local
67 SkPMColor resC = SkFastFourByteInterp256(src[i], dstC, scale);
77 SkPMColor resC = SkFastFourByteInterp256(src[i], dstC, scale);
85 const int scale = fScale256; local
92 unsigned resA = SkAlphaBlend(SkGetPackedA32(src[i]), dstA, scale);
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalScaleOperationsTest.java 32 assertEquals("incorrect scale", 24, res.scale());
35 assertEquals("incorrect scale", 84, res.scale());
57 assertEquals("incorrect scale", 24, res.scale());
60 assertEquals("incorrect scale", 84, res.scale());
63 assertEquals("incorrect scale", -16, res.scale());
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalConstructorsTest.java 73 assertEquals("incorrect scale", 0, aNumber.scale());
84 * new BigDecimal(BigInteger value, int scale)
92 assertEquals("incorrect scale", aScale, aNumber.scale());
108 assertEquals("incorrect scale", resScale, result.scale());
112 * new BigDecimal(BigInteger value, int scale, MathContext)
125 assertEquals("incorrect scale", resScale, result.scale());
    [all...]
  /external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Blur/
HGaussianBlur.j3md 7 Float Scale
VGaussianBlur.j3md 7 Float Scale
  /external/clang/test/PCH/
blocks.h 12 __block int scale = s;
13 return call_block(^(int x, int y) { return x*scale + y; }, a, b);

Completed in 518 milliseconds

12 3 4 5 6 7 8 91011>>