HomeSort by relevance Sort by last modified time
    Searched full:fraction (Results 276 - 300 of 1336) sorted by null

<<11121314151617181920>>

  /packages/screensavers/PhotoTable/res/values/
config.xml 74 <!-- fraction of distance covered before landing, in parts per million from 0 to 1. -->
89 <!-- distance from edge to start a valid edge swipe as a fraction of
93 <!-- minimum length of a valid edge swipe as a fraction of
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DynamicListView.java 457 public Rect evaluate(float fraction, Rect startValue, Rect endValue) {
458 return new Rect(interpolate(startValue.left, endValue.left, fraction),
459 interpolate(startValue.top, endValue.top, fraction),
460 interpolate(startValue.right, endValue.right, fraction),
461 interpolate(startValue.bottom, endValue.bottom, fraction));
464 public int interpolate(int start, int end, float fraction) {
465 return (int)(start + fraction * (end - start));
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
RowsFragment.java 81 float fraction; local
83 fraction = 1;
86 fraction = (float) (totalTime / (double) mSelectAnimatorDurationInUse);
89 fraction = mSelectAnimatorInterpolatorInUse.getInterpolation(fraction);
91 float level = mSelectLevelAnimStart + fraction * mSelectLevelAnimDelta;
245 R.fraction.lb_browse_rows_scale, 1, 1);
RowsSupportFragment.java 83 float fraction; local
85 fraction = 1;
88 fraction = (float) (totalTime / (double) mSelectAnimatorDurationInUse);
91 fraction = mSelectAnimatorInterpolatorInUse.getInterpolation(fraction);
93 float level = mSelectLevelAnimStart + fraction * mSelectLevelAnimDelta;
247 R.fraction.lb_browse_rows_scale, 1, 1);
  /frameworks/base/packages/SystemUI/res/values/
dimens.xml 157 <!-- Minimum fraction of the screen that should be taken up by the notification panel.
319 <!-- The fraction of the screen height where the clock on the Keyguard has its center. The
322 <fraction name="keyguard_clock_y_fraction_max">32.5%</fraction>
323 <fraction name="keyguard_clock_y_fraction_min">19.8%</fraction>
504 <fraction name="battery_button_height_fraction">10.5%</fraction>
506 <!-- Fraction value to smooth the edges of the battery icon. The path will be inset by this
507 fraction of a pixel.--
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 158 // Color fraction class to string conversion
762 * 2. Convert the in gamut color into the fraction of the fromFromat
765 * 3. Convert from the fraction of the in gamut from format range to
766 * the fraction of the in gamut to format range. Produce black
769 * 4. Covert from the fraction of the in gamut to format to the
770 * fraction of the full range to format.
786 * | | | | +-- fraction of full range
787 * | | | +-- fraction of valid range
789 * | +-- fraction of valid range
790 * +-- fraction of full rang
    [all...]
  /libcore/luni/src/main/java/java/text/
NumberFormat.java 419 * Returns the maximum number of fraction digits that are printed when
420 * formatting. If the maximum is less than the number of fraction digits,
423 * @return the maximum number of fraction digits.
441 * Returns the minimum number of fraction digits that are printed when
444 * @return the minimum number of fraction digits.
604 * values. The min and max fraction digits remain the same.
631 * Sets the maximum number of fraction digits that are printed when
632 * formatting. If the maximum is less than the number of fraction digits,
636 * the maximum number of fraction digits.
661 * Sets the minimum number of fraction digits that are printed whe
    [all...]
  /frameworks/base/docs/html/guide/topics/graphics/
prop-animation.jd 132 begins. During the whole animation, the {@link android.animation.ValueAnimator} calculates an <em>elapsed fraction</em>
134 elapsed fraction represents the percentage of time that the animation has completed, 0 meaning 0%
135 and 1 meaning 100%. For example, in Figure 1, the elapsed fraction at t = 10 ms would be .25
138 <p>When the {@link android.animation.ValueAnimator} is done calculating an elapsed fraction, it
140 <em>interpolated fraction</em>. An interpolated fraction maps the elapsed fraction to a new
141 fraction that takes into account the time interpolation that is set. For example, in Figure 2,
142 because the animation slowly accelerates, the interpolated fraction, about .15, is less than the
143 elapsed fraction, .25, at t = 10 ms. In Figure 1, the interpolated fraction is always the same a
    [all...]
  /external/libxml2/test/valid/dtds/
xhtml-lat1.ent 58 <!ENTITY frac14 "&#188;"> <!-- vulgar fraction one quarter
59 = fraction one quarter, U+00BC ISOnum -->
60 <!ENTITY frac12 "&#189;"> <!-- vulgar fraction one half
61 = fraction one half, U+00BD ISOnum -->
62 <!ENTITY frac34 "&#190;"> <!-- vulgar fraction three quarters
63 = fraction three quarters, U+00BE ISOnum -->
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
SetupWizardLayout.java 435 * Set the X translation as a fraction of the width of this view. Make sure this method is not
442 public void setXFraction(float fraction) {
443 mXFraction = fraction;
446 setTranslationX(width * fraction);
448 // If we haven't done a layout pass yet, wait for one and then set the fraction before
467 * Return the X translation as a fraction of the width, as previously set in setXFraction.
  /external/openssh/openbsd-compat/
fmt_scaled.c 144 /* If no scale factor given, we're done. fraction is discarded. */
150 /* Validate scale factor, and scale whole and fraction by it. */
209 /* scale whole part; get unscaled fraction */
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java 165 * @param frac the fraction from the expansion in [0, 1]
167 * fraction as the panel also might be expanded if the fraction is 0
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
hp_roman8.py 137 0x00f5: 0x00be, # VULGAR FRACTION THREE QUARTERS
139 0x00f7: 0x00bc, # VULGAR FRACTION ONE QUARTER
140 0x00f8: 0x00bd, # VULGAR FRACTION ONE HALF
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
hp_roman8.py 137 0x00f5: 0x00be, # VULGAR FRACTION THREE QUARTERS
139 0x00f7: 0x00bc, # VULGAR FRACTION ONE QUARTER
140 0x00f8: 0x00bd, # VULGAR FRACTION ONE HALF
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
floatio.h 41 /* 128 bit fraction takes up 39 decimal digits; max reasonable precision */
  /bootable/recovery/
screen_ui.h 41 void SetProgress(float fraction);
  /cts/tests/leanbackjank/app/src/android/cts/jank/leanback/presenter/
IconHeaderItemPresenter.java 39 .getFraction(R.fraction.lb_browse_header_unselect_alpha, 1, 1);
  /development/samples/Support4Demos/src/com/example/android/supportv4/widget/
ExploreByTouchHelperActivity.java 136 * @param top Top coordinate as a fraction of the parent height, range
138 * @param left Left coordinate as a fraction of the parent width, range
140 * @param bottom Bottom coordinate as a fraction of the parent height,
142 * @param right Right coordinate as a fraction of the parent width,
  /external/fonttools/Lib/fontTools/encodings/
StandardEncoding.py 28 'cent', 'sterling', 'fraction', 'yen', 'florin', 'section',
  /external/libvpx/libvpx/vp8/common/
loopfilter.h 24 /* fraction of total macroblock rows to be used in fast filter level picking */
  /external/sfntly/cpp/src/sfntly/data/
font_output_stream.h 39 // F2DOT14 16-bit signed fixed number with the low 14 bits of fraction (2.14)
  /external/skia/src/gpu/
GrGlyph.h 70 // two most significant fraction bits from fixed-point
  /external/srtp/crypto/test/
stat_driver.c 97 printf("(nota bene: a small fraction of stat_test failures does not \n"
  /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
  /external/toybox/toys/other/
timeout.c 19 Length can be a decimal fraction. An optional suffix can be "m"

Completed in 460 milliseconds

<<11121314151617181920>>