HomeSort by relevance Sort by last modified time
    Searched full:fraction (Results 1 - 25 of 808) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/java/res/values-sw768dp-land/
dimens.xml 25 <fraction name="minKeyboardHeight">45%p</fraction>
27 <fraction name="keyboard_top_padding">1.896%p</fraction>
28 <fraction name="keyboard_bottom_padding">0.0%p</fraction>
30 <fraction name="key_bottom_gap">4.103%p</fraction>
31 <fraction name="key_horizontal_gap">1.034%p</fraction>
    [all...]
  /packages/inputmethods/LatinIME/java/res/values-sw600dp-land/
dimens.xml 25 <fraction name="minKeyboardHeight">45%p</fraction>
27 <fraction name="keyboard_top_padding">2.444%p</fraction>
28 <fraction name="keyboard_bottom_padding">0.0%p</fraction>
29 <fraction name="key_bottom_gap">4.911%p</fraction>
30 <fraction name="key_horizontal_gap">1.284%p</fraction>
    [all...]
  /packages/inputmethods/LatinIME/java/res/values-sw600dp/
dimens.xml 25 <fraction name="maxKeyboardHeight">46%p</fraction>
26 <fraction name="minKeyboardHeight">-35.0%p</fraction>
30 <fraction name="keyboard_top_padding">2.291%p</fraction>
31 <fraction name="keyboard_bottom_padding">0.0%p</fraction>
32 <fraction name="key_bottom_gap">3.750%p</fraction>
    [all...]
  /packages/inputmethods/LatinIME/java/res/values-sw768dp/
dimens.xml 25 <fraction name="maxKeyboardHeight">46%p</fraction>
26 <fraction name="minKeyboardHeight">-35.0%p</fraction>
28 <fraction name="keyboard_top_padding">2.291%p</fraction>
29 <fraction name="keyboard_bottom_padding">0.0%p</fraction>
31 <fraction name="key_bottom_gap">4.270%p</fraction>
    [all...]
  /packages/inputmethods/LatinIME/java/res/values-land/
dimens.xml 25 <fraction name="minKeyboardHeight">45%p</fraction>
29 <fraction name="keyboard_top_padding">1.818%p</fraction>
30 <fraction name="keyboard_bottom_padding">0.0%p</fraction>
31 <fraction name="key_bottom_gap">4.330%p</fraction>
32 <fraction name="key_horizontal_gap">0.405%p</fraction>
    [all...]
  /packages/inputmethods/LatinIME/java/res/values/
dimens.xml 25 <fraction name="maxKeyboardHeight">46%p</fraction>
26 <fraction name="minKeyboardHeight">-61.8%p</fraction>
32 <fraction name="keyboard_top_padding">1.556%p</fraction>
33 <fraction name="keyboard_bottom_padding">4.669%p</fraction>
34 <fraction name="keyboard_left_padding">0%p</fraction>
    [all...]
styles.xml 25 <item name="keyboardTopPadding">@fraction/keyboard_top_padding</item>
26 <item name="keyboardBottomPadding">@fraction/keyboard_bottom_padding</item>
27 <item name="keyboardLeftPadding">@fraction/keyboard_left_padding</item>
28 <item name="keyboardRightPadding">@fraction/keyboard_right_padding</item>
29 <item name="horizontalGap">@fraction/key_horizontal_gap</item>
30 <item name="verticalGap">@fraction/key_bottom_gap</item>
36 <item name="keyLetterSize">@fraction/key_letter_ratio</item>
37 <item name="keyLargeLetterRatio">@fraction/key_large_letter_ratio</item>
38 <item name="keyLabelSize">@fraction/key_label_ratio</item>
39 <item name="keyLargeLabelRatio">@fraction/key_large_label_ratio</item
    [all...]
  /cts/tests/res/values/
dimens.xml 19 <item name="frac100perc" type="dimen" format="fraction">100%</item>
20 <item name="frac1perc" type="dimen" format="fraction">1%</item>
21 <item name="fracp1perc" type="dimen" format="fraction">.1%</item>
22 <item name="fracp01perc" type="dimen" format="fraction">.01%</item>
23 <item name="frac0perc" type="dimen" format="fraction">0%</item>
24 <item name="frac1p1perc" type="dimen" format="fraction">1.1%</item>
25 <item name="frac100p1perc" type="dimen" format="fraction">100.1%</item>
26 <item name="frac25510perc" type="dimen" format="fraction">25510%</item>
27 <item name="frac25610perc" type="dimen" format="fraction">25610%</item>
28 <item name="frac6553510perc" type="dimen" format="fraction">6553510%</item
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
anim1-expected-completion57.txt 2 100% : <b>Fraction</b> - a percentage of the base size
3 100%p : <b>Fraction</b> - a percentage relative to parent container
  /frameworks/base/core/java/android/animation/
RectEvaluator.java 27 * end Rect values, with <code>fraction</code> representing the proportion
32 * @param fraction The fraction from the starting to the ending values
36 * <code>fraction</code> parameter.
39 public Rect evaluate(float fraction, Rect startValue, Rect endValue) {
40 return new Rect(startValue.left + (int)((endValue.left - startValue.left) * fraction),
41 startValue.top + (int)((endValue.top - startValue.top) * fraction),
42 startValue.right + (int)((endValue.right - startValue.right) * fraction),
43 startValue.bottom + (int)((endValue.bottom - startValue.bottom) * fraction));
FloatEvaluator.java 26 * <code>fraction</code> representing the proportion between the start and end values. The
29 * and <code>t</code> is <code>fraction</code>.
31 * @param fraction The fraction from the starting to the ending values
36 * <code>fraction</code> parameter.
38 public Float evaluate(float fraction, Number startValue, Number endValue) {
40 return startFloat + fraction * (endValue.floatValue() - startFloat);
IntEvaluator.java 26 * <code>fraction</code> representing the proportion between the start and end values. The
29 * and <code>t</code> is <code>fraction</code>.
31 * @param fraction The fraction from the starting to the ending values
36 * <code>fraction</code> parameter.
38 public Integer evaluate(float fraction, Integer startValue, Integer endValue) {
40 return (int)(startInt + fraction * (endValue - startInt));
FloatKeyframeSet.java 44 public Object getValue(float fraction) {
45 return getFloatValue(fraction);
60 public float getFloatValue(float fraction) {
69 fraction = mInterpolator.getInterpolation(fraction);
72 return firstValue + fraction * deltaValue;
74 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).floatValue();
77 if (fraction <= 0f) {
86 fraction = interpolator.getInterpolation(fraction);
    [all...]
IntKeyframeSet.java 44 public Object getValue(float fraction) {
45 return getIntValue(fraction);
60 public int getIntValue(float fraction) {
69 fraction = mInterpolator.getInterpolation(fraction);
72 return firstValue + (int)(fraction * deltaValue);
74 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).intValue();
77 if (fraction <= 0f) {
86 fraction = interpolator.getInterpolation(fraction);
    [all...]
TypeEvaluator.java 31 * <code>fraction</code> representing the proportion between the start and end values. The
34 * and <code>t</code> is <code>fraction</code>.
36 * @param fraction The fraction from the starting to the ending values
40 * <code>fraction</code> parameter.
42 public T evaluate(float fraction, T startValue, T endValue);
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...]
Keyframe.java 67 * @param fraction The time, expressed as a value between 0 and 1, representing the fraction
73 public static Keyframe ofInt(float fraction, int value) {
74 return new IntKeyframe(fraction, value);
86 * @param fraction The time, expressed as a value between 0 and 1, representing the fraction
89 public static Keyframe ofInt(float fraction) {
90 return new IntKeyframe(fraction);
99 * @param fraction The time, expressed as a value between 0 and 1, representing the fraction
    [all...]
ArgbEvaluator.java 31 * @param fraction The fraction from the starting to the ending values
41 public Object evaluate(float fraction, Object startValue, Object endValue) {
54 return (int)((startA + (int)(fraction * (endA - startA))) << 24) |
55 (int)((startR + (int)(fraction * (endR - startR))) << 16) |
56 (int)((startG + (int)(fraction * (endG - startG))) << 8) |
57 (int)((startB + (int)(fraction * (endB - startB))));
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
CaptureAnimation.java 37 // Calculate the slide factor based on the give time fraction.
38 public static float calculateSlide(float fraction) {
39 return sSlideInterpolator.getInterpolation(fraction);
42 // Calculate the scale factor based on the given time fraction.
43 public static float calculateScale(float fraction) {
45 if (fraction <= 0.5f) {
48 sZoomOutInterpolator.getInterpolation(fraction * 2);
52 sZoomInInterpolator.getInterpolation((fraction - 0.5f) * 2f);
  /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
  /cts/tests/tests/animation/src/android/animation/cts/
KeyframeTest.java 27 float fraction = keyFrame.getFraction(); local
28 assertTrue(fraction == 0.0f);
34 float fraction = keyFrame.getFraction(); local
35 assertTrue(fraction == 0.5f);
40 float fraction = keyFrame.getFraction(); local
41 assertEquals(fraction, 0.0f);
58 float fraction = keyFrame.getFraction(); local
59 assertEquals(fraction, 0.0f);
FloatEvaluatorTest.java 26 float fraction = 0.5f; local
28 float result = floatEvaluator.evaluate(fraction, start, end);
29 assertTrue(result >= (fraction*start));
30 assertTrue(result <= (fraction*end));
IntEvaluatorTest.java 26 final float fraction = 0.5f; local
31 result = intEvaluator.evaluate(fraction, start, end);
38 assertTrue(result >= (fraction*start));
39 assertTrue(result <= (fraction*end));
  /external/skia/legacy/src/core/
SkTextFormatParams.h 16 // Fraction of the text size to lower a strike through line below the baseline.
18 // Fraction of the text size to lower a underline below the baseline.
20 // Fraction of the text size to use for a strike through or under-line.
23 // The fraction of text size to embolden fake bold text scales with text size.
  /external/skia/src/core/
SkTextFormatParams.h 16 // Fraction of the text size to lower a strike through line below the baseline.
18 // Fraction of the text size to lower a underline below the baseline.
20 // Fraction of the text size to use for a strike through or under-line.
23 // The fraction of text size to embolden fake bold text scales with text size.

Completed in 233 milliseconds

1 2 3 4 5 6 7 8 91011>>