HomeSort by relevance Sort by last modified time
    Searched refs:fraction (Results 101 - 125 of 279) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthPoint.h 51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
AnimatableLengthSize.h 51 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
AnimatableStrokeDasharrayList.cpp 65 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableStrokeDasharrayList::interpolateTo(const AnimatableValue* value, double fraction) const
90 bool success = interpolateLists(from, to, fraction, interpolatedValues);
AnimatableLengthBox.h 53 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
AnimatableLengthPoint3D.h 52 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
InterpolationEffect.h 19 PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > getActiveInterpolations(double fraction, double iterationDuration) const;
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
TimingFunction.h 55 // Evaluates the timing function at the given fraction. The accuracy parameter provides a hint as to the required
57 virtual double evaluate(double fraction, double accuracy) const = 0;
81 virtual double evaluate(double fraction, double) const OVERRIDE;
138 virtual double evaluate(double fraction, double accuracy) const OVERRIDE;
215 virtual double evaluate(double fraction, double) const OVERRIDE;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
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/animation/
ValueAnimator.java 73 // determine elapsed time (and therefore the elapsed fraction) in subsequent calls
111 * elapsed fraction to be inverted to calculate the appropriate values.
122 * Tracks current elapsed/eased fraction, for querying in getAnimatedFraction().
200 * The time interpolator to be used. The elapsed fraction of the animation will be passed
201 * through this interpolator to calculate the interpolated fraction, which is then used to
1183 float fraction = mDuration > 0 ? (float)(currentTime - mStartTime) \/ mDuration : 1f; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
delay_estimator.c 171 float fraction = 1.f; local
178 // This |histogram_threshold| equals a |fraction| of the |histogram| at bin
179 // |last_delay|. The |fraction| is a piecewise linear function of the
192 // TODO(bjornv): How much can we gain by turning the fraction calculation
195 fraction = 1.f - kFractionSlope * (delay_difference - self->allowed_offset);
196 fraction = (fraction > kMinFractionWhenPossiblyCausal ? fraction :
199 fraction = kMinFractionWhenPossiblyNonCausal -
201 fraction = (fraction > 1.f ? 1.f : fraction)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaFragmentURIParser.cpp 247 // minutes and seconds (again with an optional fraction). Minutes and
270 double fraction = 0; local
275 fraction = digits.toDouble();
276 time = value1 + fraction;
313 fraction = collectFraction(timeString, length, offset).toDouble();
315 time = (value1 * secondsPerHour) + (value2 * secondsPerMinute) + value3 + fraction;
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
CustomEvaluator.java 86 public Object evaluate(float fraction, Object startValue, Object endValue) {
89 return new XYHolder(startXY.getX() + fraction * (endXY.getX() - startXY.getX()),
90 startXY.getY() + fraction * (endXY.getY() - startXY.getY()));
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
LayoutSize.h 129 LayoutSize fraction() const function in class:WebCore::LayoutSize
131 return LayoutSize(m_width.fraction(), m_height.fraction());
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
number_test.cpp 141 char fraction = std::tr1::get<1>(GetParam()); local
142 if (fraction != '\0')
143 str.push_back(fraction);
  /libcore/luni/src/test/java/libcore/java/text/
DecimalFormatTest.java 156 private void assertBigDecimalWithFraction(BigDecimal bd, String expectedResult, int fraction) {
158 pf.setMaximumFractionDigits(fraction);
162 private void assertDecFmtWithMultiplierAndFraction(String value, int multiplier, int fraction, String expectedResult) {
165 df.setMaximumFractionDigits(fraction);
170 private void assertDecFmtWithMultiplierAndFractionByLocale(String value, int multiplier, int fraction, Locale locale, String expectedResult) {
173 df.setMaximumFractionDigits(fraction);
264 // Confirm the fraction digits do not change when the currency is changed.
  /bootable/recovery/
screen_ui.cpp 446 void ScreenRecoveryUI::SetProgress(float fraction)
449 if (fraction < 0.0) fraction = 0.0;
450 if (fraction > 1.0) fraction = 1.0;
451 if (progressBarType == DETERMINATE && fraction > progress) {
455 if ((int) (progress * scale) != (int) (fraction * scale)) {
456 progress = fraction;
install.cpp 143 float fraction = strtof(fraction_s, NULL); local
146 ui->ShowProgress(fraction * (1-VERIFICATION_PROGRESS_FRACTION), seconds);
149 float fraction = strtof(fraction_s, NULL); local
150 ui->SetProgress(fraction);
screen_ui.h 40 void SetProgress(float fraction);
ui.h 48 // portion - fraction of the progress bar the next operation will use
54 virtual void SetProgress(float fraction) = 0;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
ColorFilterDimmer.java 51 context.getResources().getFraction(R.fraction.lb_view_active_level, 1, 0));
53 context.getResources().getFraction(R.fraction.lb_view_dimmed_level, 1, 1));
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupBasicsFragment.java 128 getResources().getFraction(R.fraction.manual_setup_enabled_alpha, 1, 1);
131 getResources().getFraction(R.fraction.manual_setup_disabled_alpha, 1, 1);
  /external/chromium_org/chrome/browser/ui/cocoa/
presentation_mode_controller.h 110 // Gets the current floating bar shown fraction.
113 // Sets a new current floating bar shown fraction. NOTE: This function has side
115 - (void)changeFloatingBarShownFraction:(CGFloat)fraction;
  /external/tcpdump/
print-ntp.c 212 f = EXTRACT_16BITS(&sfp->fraction);
214 f = ff * 1000000.0; /* Treat fraction as parts per million */
229 uf = EXTRACT_32BITS(&lfp->fraction);
234 f = ff * 1000000000.0; /* treat fraction as parts per billion */
267 uf = EXTRACT_32BITS(&lfp->fraction);
268 ouf = EXTRACT_32BITS(&olfp->fraction);
301 f = ff * 1000000000.0; /* treat fraction as parts per billion */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.h 35 PV_STATUS BitstreamSavePartial(BitstreamEncVideo *stream, Int *fraction);
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 364 public Rect evaluate(float fraction, Rect startValue, Rect endValue) {
365 return new Rect(interpolate(startValue.left, endValue.left, fraction),
366 interpolate(startValue.top, endValue.top, fraction),
367 interpolate(startValue.right, endValue.right, fraction),
368 interpolate(startValue.bottom, endValue.bottom, fraction));
371 public int interpolate(int start, int end, float fraction) {
372 return (int)(start + fraction * (end - start));

Completed in 536 milliseconds

1 2 3 45 6 7 8 91011>>