/external/chromium/chrome/browser/ui/cocoa/ |
image_utils.h | 13 // Works like |-drawInRect:fromRect:operation:fraction:|, except that 18 // |-drawInRect:fromRect:operation:fraction:respectFlipped:hints:|. 22 fraction:(CGFloat)requestedAlpha
|
/external/chromium_org/cc/scheduler/ |
rolling_time_delta_history.cc | 40 double fraction = percent / 100.0; local 42 if (fraction <= 0.0) 45 if (fraction >= 1.0) 49 static_cast<size_t>(std::ceil(fraction * sample_set_.size())) - 1;
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableNeutral.h | 45 virtual PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const OVERRIDE
|
AnimatableValue.h | 47 static PassRefPtr<AnimatableValue> interpolate(const AnimatableValue*, const AnimatableValue*, double fraction); 70 virtual PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const = 0; 71 static PassRefPtr<AnimatableValue> defaultInterpolateTo(const AnimatableValue* left, const AnimatableValue* right, double fraction) { return takeConstRef((fraction < 0.5) ? left : right); }
|
AnimationEffect.h | 61 virtual PassOwnPtr<CompositableValueMap> sample(int iteration, double fraction) const = 0;
|
AnimatableUnknown.h | 50 virtual PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const OVERRIDE 52 return defaultInterpolateTo(this, value, fraction);
|
/frameworks/base/core/java/android/animation/ |
KeyframeSet.java | 165 * Gets the animated value, given the elapsed fraction of the animation (interpolated by the 167 * function maps the input fraction to the appropriate keyframe interval and a fraction 168 * between them and returns the interpolated value. Note that the input fraction may fall 170 * spring interpolation that might send the fraction past 1.0). We handle this situation by 173 * @param fraction The elapsed fraction of the animation 176 public Object getValue(float fraction) { 181 fraction = mInterpolator.getInterpolation(fraction); [all...] |
TimeAnimator.java | 43 void animateValue(float fraction) {
|
/external/tcpdump/ |
ntp.h | 21 * | Fraction Part | 27 * | Integer Part | Fraction Part | 32 u_int32_t fraction; member in struct:l_fixedpt 37 u_int16_t fraction; member in struct:s_fixedpt
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/ |
math_op.h | 38 Word16 fraction /* (i) Q15 : Fractionnal part. (range: 0.0<=val<1.0) */
|
/development/samples/devbytes/animation/MultiPropertyAnimations/src/com/example/android/multipropertyanimations/ |
MultiPropertyAnimations.java | 57 float fraction = animator.getAnimatedFraction(); 58 view.setTranslationX(TX_START + fraction * (TX_END - TX_START)); 59 view.setTranslationY(TY_START + fraction * (TY_END - TY_START));
|
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
pvamrwb_math_op.h | 85 int16 fraction /* (i) Q15 : Fractionnal part. (range: 0.0<=val<1.0) */ 98 int16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1)*/ 105 int16 *fraction /* (o) : Fractional part of Log2. (range: 0<=val<1) */
|
pvamrwb_math_op.cpp | 307 1- If exponant is odd then shift fraction right once. 309 3- i = bit25-b30 of fraction, 16 <= i <= 63 ->because of normalization. 312 6- fraction = table[i]<<16 - (table[i] - table[i+1]) * a * 2 363 L_x = pow(2.0, exponant.fraction) (exponant = interger part) 364 = pow(2.0, 0.fraction) << exponant 371 1- i = bit10-b15 of fraction, 0 <= i <= 31 372 2- a = bit0-b9 of fraction 386 int16 fraction /* (i) Q15 : Fractionnal part. (range: 0.0<=val<1.0) */ 392 L_x = fraction << 5; /* L_x = fraction<<6 * 547 Lg2_normalized(shl_int32(L_x, exp), exp, exponent, fraction); local [all...] |
/packages/apps/Camera/src/com/android/camera/ |
SwitchAnimManager.java | 76 float fraction = timeDiff / ANIMATION_DURATION; local 81 float previewAnimScale = 1 - ZOOM_DELTA_PREVIEW * (1 - fraction); 88 float reviewAnimScale = 1 + ZOOM_DELTA_REVIEW * fraction; 109 canvas.setAlpha(fraction); // fade in 114 canvas.setAlpha((1f - fraction) * INITIAL_DARKEN_ALPHA); // fade out
|
CaptureAnimManager.java | 126 float fraction = (float) (timeDiff) / TIME_SLIDE; local 130 x = x + mDelta * mSlideInterpolator.getInterpolation(fraction); 132 y = y + mDelta * mSlideInterpolator.getInterpolation(fraction); 135 // canvas.setAlpha(fraction);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
TimingFunction.h | 50 // Evaluates the timing function at the given fraction. The accuracy parameter provides a hint as to the required 52 virtual double evaluate(double fraction, double accuracy) const = 0; 73 virtual double evaluate(double fraction, double) const 75 return fraction; 136 virtual double evaluate(double fraction, double accuracy) const 138 return UnitBezier(m_x1, m_y1, m_x2, m_y2).solve(fraction, accuracy); 187 virtual double evaluate(double fraction, double) const 189 return std::min(1.0, (floor(m_steps * fraction) + m_stepAtStart) / m_steps);
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
pitch_f4.c | 60 Word32 frac /* (i) : fraction (-4..+3) */ 70 Word16 * pit_frac, /* (o) : chosen fraction (0, 1, 2 or 3). */ 77 Word32 fraction, i; local 120 fraction = -3; 124 fraction = -2; 128 fraction = 0; 130 max = Interpol_4(&corr[t0], fraction); 132 for (i = fraction + step; i <= 3; i += step) 138 fraction = i; 141 /* limit the fraction value in the interval [0,1,2,3] * [all...] |
math_op.c | 83 | 1- If exponant is odd then shift fraction right once. | 85 | 3- i = bit25-b30 of fraction, 16 <= i <= 63 ->because of normalization. | 88 | 6- fraction = table[i]<<16 - (table[i] - table[i+1]) * a * 2 | 136 | L_x = pow(2.0, exponant.fraction) (exponant = interger part) | 137 | = pow(2.0, 0.fraction) << exponant | 144 | 1- i = bit10-b15 of fraction, 0 <= i <= 31 | 145 | 2- a = bit0-b9 of fraction | 160 Word16 fraction /* (i) Q15 : Fractionnal part. (range: 0.0<=val<1.0) */ 166 L_x = vo_L_mult(fraction, 32); /* L_x = fraction<<6 * [all...] |
/frameworks/base/core/java/android/net/ |
SntpClient.java | 186 long fraction = read32(buffer, offset + 4); local 187 return ((seconds - OFFSET_1900_TO_1970) * 1000) + ((fraction * 1000L) / 0x100000000L); 205 long fraction = milliseconds * 0x100000000L / 1000L; local 206 // write fraction in big endian format 207 buffer[offset++] = (byte)(fraction >> 24); 208 buffer[offset++] = (byte)(fraction >> 16); 209 buffer[offset++] = (byte)(fraction >> 8);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
DragImage.h | 52 void dissolveToFraction(float fraction);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
EmojiLayoutParams.java | 43 mKeyVerticalGap = (int) res.getFraction(R.fraction.key_bottom_gap_ics, 45 mBottomPadding = (int) res.getFraction(R.fraction.keyboard_bottom_padding_ics, 47 mTopPadding = (int) res.getFraction(R.fraction.keyboard_top_padding_ics, 49 mKeyHorizontalGap = (int) (res.getFraction(R.fraction.key_horizontal_gap_ics,
|
/external/chromium_org/chrome/browser/prerender/ |
prerender_histograms.cc | 199 double fraction) const { 200 if (fraction < 0.0 || fraction > 1.0) 202 int percentage = static_cast<int>(fraction * 100); 312 double fraction) const { 313 if (fraction < 0.0 || fraction > 1.0) 315 int percentage = static_cast<int>(fraction * 100);
|
prerender_histograms.h | 43 void RecordPercentLoadDoneAtSwapin(Origin origin, double fraction) const; 88 void RecordFractionPixelsFinalAtSwapin(Origin origin, double fraction) const;
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
bitstream_io.cpp | 257 PV_STATUS BitstreamSavePartial(BitstreamEncVideo *stream, Int *fraction) 279 bitleft = bitused - (numbyte << 3); /* number of bits used (fraction) */ 283 *fraction = 1; 287 *fraction = 0; 301 if (*fraction) 329 Int fraction; local 341 BitstreamSavePartial(stream, &fraction); 359 Int fraction; local 377 BitstreamSavePartial(stream, &fraction); 422 Int bitused, bitleft, offset, fraction; local 585 Int fraction; local 684 Int movebyte, bitused, leftover, i, fraction; local [all...] |
/bootable/recovery/ |
install.cpp | 142 float fraction = strtof(fraction_s, NULL); local 145 ui->ShowProgress(fraction * (1-VERIFICATION_PROGRESS_FRACTION), seconds); 148 float fraction = strtof(fraction_s, NULL); local 149 ui->SetProgress(fraction);
|