HomeSort by relevance Sort by last modified time
    Searched full:scale (Results 76 - 100 of 1224) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/svg/graphics/
SVGResourceFilter.cpp 111 // scale filter size to filterRes
118 // scale to big sourceImage size to kMaxFilterSize
119 tempSourceRect.scale(m_scaleX, m_scaleY);
130 // recalculate the effect sizes with new scale factors
138 clippedSourceRect.scale(m_scaleX, m_scaleY);
150 sourceGraphicContext->scale(FloatSize(m_scaleX, m_scaleY));
201 bbox.scale(100.f);
  /frameworks/base/core/java/android/widget/
AnalogClock.java 147 float scale = Math.min(hScale, vScale); local
149 setMeasuredDimension(resolveSize((int) (mDialWidth * scale), widthMeasureSpec),
150 resolveSize((int) (mDialHeight * scale), heightMeasureSpec));
182 float scale = Math.min((float) availableWidth / (float) w, local
185 canvas.scale(scale, scale, x, y);
AbsSeekBar.java 172 void onProgressRefresh(float scale, boolean fromUser) {
175 setThumbPos(getWidth(), thumb, scale, Integer.MIN_VALUE);
196 float scale = max > 0 ? (float) getProgress() / (float) max : 0;
200 setThumbPos(w, thumb, scale, 0);
217 setThumbPos(w, thumb, scale, gap);
225 private void setThumbPos(int w, Drawable thumb, float scale, int gap) {
234 int thumbPos = (int) (scale * available);
323 float scale;
326 scale = 0.0f;
328 scale = 1.0f
    [all...]
ImageView.java 183 int scale = alpha + (alpha >> 7); local
184 if (mViewAlphaScale != scale) {
185 mViewAlphaScale = scale;
362 * Scale using the image matrix when drawing. The image matrix can be set using
368 * Scale the image using {@link Matrix.ScaleToFit#FILL}.
373 * Scale the image using {@link Matrix.ScaleToFit#START}.
378 * Scale the image using {@link Matrix.ScaleToFit#CENTER}.
384 * Scale the image using {@link Matrix.ScaleToFit#END}.
394 * Scale the image uniformly (maintain the image's aspect ratio) so
402 * Scale the image uniformly (maintain the image's aspect ratio) s
777 float scale; local
792 float scale; local
    [all...]
  /external/junit/src/junit/awtui/
ProgressBar.java 60 public int scale(int value) { method in class:ProgressBar
68 fProgressX= scale(fProgress);
80 fProgressX= scale(fProgress);
  /external/srec/audio/AudioIn/UNIX/include/
filter.h 43 unsigned int scale; // fixed-point filter scale factor member in struct:fir_struct
55 extern FIR_struct* FIR_construct(unsigned int nTaps, const typeCoeff *pCoeffs, int scale, int factor_up, int factor_down);
  /external/webkit/WebKit/android/jni/
WebHistory.h 47 // there are two scale factors saved with each history item. mScale reflects the
48 // viewport scale factor, default to 100 means 100%. mScreenWidthScale records
49 // the scale factor for the screen width used to wrap the text paragraph.
  /external/skia/include/core/
SkColorPriv.h 29 byte into a scale value, so that we can say scale * value >> 8 instead of
105 /** Scale the 16bit color value by the 0..256 scale parameter.
110 static inline U16CPU SkAlphaMulRGB16(U16CPU c, unsigned scale) {
111 return SkCompact_rgb_16(SkExpand_rgb_16(c) * (scale >> 3) >> 5);
117 /** Blend src and dst 16bit colors by the 0..256 scale parameter.
226 static inline uint32_t SkAlphaMulQ(uint32_t c, unsigned scale) {
230 uint32_t rb = ((c & mask) * scale) >> 8;
231 uint32_t ag = ((c >> 8) & mask) * scale;
540 unsigned scale = SkAlpha15To16(15 - sa); local
    [all...]
  /cts/tests/res/drawable/
scaledrawable.xml 18 <scale xmlns:android="http://schemas.android.com/apk/res/android"
  /dalvik/libcore/math/src/main/java/java/math/
Conversion.java 134 * being scaled by {@code scale}.
139 static String toDecimalScaledString(BigInteger val, int scale) {
151 switch (scale) {
168 if (scale < 0) {
173 result1.append(-scale);
243 int exponent = resLengthInChars - currentChar - scale - 1;
244 if (scale == 0) {
251 if ((scale > 0) && (exponent >= -6)) {
301 static String toDecimalScaledString(long value, int scale) {
310 switch (scale) {
    [all...]
  /dalvik/vm/mterp/x86-atom/
OP_AGET_BOOLEAN.S 20 %include "x86-atom/OP_AGET.S" { "mov":"zbl", "scale":"1"
OP_AGET_BYTE.S 20 %include "x86-atom/OP_AGET.S" { "mov":"sbl", "scale":"1"
OP_AGET_CHAR.S 20 %include "x86-atom/OP_AGET.S" { "mov":"zwl", "scale":"2"
OP_AGET_SHORT.S 20 %include "x86-atom/OP_AGET.S" { "mov":"swl", "scale":"2"
OP_APUT_BOOLEAN.S 20 %include "x86-atom/OP_APUT.S" { "mov":"b", "scale":"1", "value":"rINSTbl" }
OP_APUT_BYTE.S 20 %include "x86-atom/OP_APUT.S" { "mov":"b", "scale":"1", "value":"rINSTbl"
OP_APUT_CHAR.S 20 %include "x86-atom/OP_APUT.S" { "mov":"w", "scale":"2", "value":"rINSTw"
OP_APUT_SHORT.S 20 %include "x86-atom/OP_APUT.S" { "mov":"w", "scale":"2", "value":"rINSTw"
  /external/freetype/src/base/
ftadvanc.c 30 FT_Fixed scale; local
41 scale = face->size->metrics.y_scale;
43 scale = face->size->metrics.x_scale;
49 advances[nn] = FT_MulDiv( advances[nn], scale, 64 );
  /external/iptables/include/linux/netfilter_ipv4/
ipt_dstlimit.h 18 u_int32_t avg; /* Average secs between packets * scale */
ipt_hashlimit.h 19 u_int32_t avg; /* Average secs between packets * scale */
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_hashlimit.h 19 u_int32_t avg; /* Average secs between packets * scale */
  /external/qemu/distrib/sdl-1.2.12/src/timer/macos/
FastTimes.h 7 /* Updated 3/21/00 - Fixed ns conversion, create 2 different scale factors */
  /external/skia/src/core/
SkColor.cpp 24 unsigned scale = SkAlpha255To256(a);
25 r = SkAlphaMul(r, scale);
26 g = SkAlphaMul(g, scale);
27 b = SkAlphaMul(b, scale);
  /external/webkit/WebKit/android/
RenderSkinRadio.cpp 85 SkScalar scale = SkScalarDiv(width, SIZE); local
88 canvas->scale(scale, scale);

Completed in 67 milliseconds

1 2 34 5 6 7 8 91011>>