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

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NFRuleSet.java 45 * The rule set's fraction rules: element 0 is the proper fraction
46 * (0.x) rule, element 1 is the improper fraction (x.x) rule, and
52 * True if the rule set is a fraction rule set. A fraction rule set
55 * fraction rule, and is only called upon to format values between
56 * 0 and 1. A fraction rule set has different rule-selection
192 // same as the preceding rule's base value in fraction
209 // if it's the improper fraction rule, copy it into the
216 // if it's the proper fraction rule, copy it into th
    [all...]
  /frameworks/base/core/java/android/animation/
ValueAnimator.java 93 * determine elapsed time (and therefore the elapsed fraction) in subsequent calls
148 * elapsed fraction to be inverted to calculate the appropriate values.
168 * Tracks current elapsed/eased fraction, for querying in getAnimatedFraction().
246 * The time interpolator to be used. The elapsed fraction of the animation will be passed
247 * through this interpolator to calculate the interpolated fraction, which is then used to
588 float fraction = mUnscaledDuration > 0 ? (float) playTime / mUnscaledDuration : 1; local
589 setCurrentFraction(fraction);
593 * Sets the position of the animation to the specified fraction. This fraction should
594 * be between 0 and the total fraction of the animation, including any repetition. That is
1351 float fraction = mDuration > 0 ? (float)(currentTime - mStartTime) \/ mDuration : 1f; local
    [all...]
  /external/flac/libFLAC/
float.c 54 * 0 fraction bits
75 * 4 fraction bits
96 * 8 fraction bits
117 * 12 fraction bits
138 * 16 fraction bits
159 * 20 fraction bits
180 * 24 fraction bits
201 * 28 fraction bits
226 * 32 fraction bits
247 * 48 fraction bit
    [all...]
  /frameworks/support/v17/leanback/res/values/
dimens.xml 39 <item name="lb_browse_rows_scale" type="fraction">80%</item>
49 <item name="lb_browse_header_unselect_alpha" type="fraction">50%</item>
61 <item name="lb_focus_zoom_factor_xsmall" type="fraction">106%</item>
62 <item name="lb_focus_zoom_factor_small" type="fraction">110%</item>
63 <item name="lb_focus_zoom_factor_medium" type="fraction">114%</item>
64 <item name="lb_focus_zoom_factor_large" type="fraction">118%</item>
159 <item name="lb_view_active_level" type="fraction">0%</item>
160 <item name="lb_view_dimmed_level" type="fraction">60%</item>
187 <item name="lb_search_orb_focused_zoom" type="fraction">120%</item>
197 <item name="lb_search_bar_speech_orb_max_level_zoom" type="fraction">144%</item
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
Support_DecimalFormat.java 49 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION, 12, 14);
64 t_FormatWithField(13, format, number, text, NumberFormat.Field.FRACTION, 10, 11);
85 t_FormatWithField(22, format, number, text, NumberFormat.Field.FRACTION, 5, 7);
151 v.add(new FieldContainer(4, 6, NumberFormat.Field.FRACTION));
160 v.add(new FieldContainer(5, 7, NumberFormat.Field.FRACTION));
170 v.add(new FieldContainer(6, 8, NumberFormat.Field.FRACTION));
179 v.add(new FieldContainer(5, 7, NumberFormat.Field.FRACTION));
189 v.add(new FieldContainer(6, 8, NumberFormat.Field.FRACTION));
214 v.add(new FieldContainer(5, 6, NumberFormat.Field.FRACTION));
225 v.add(new FieldContainer(3, 5, NumberFormat.Field.FRACTION));
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_DecimalFormat.java 55 t_FormatWithField(4, format, number, text, NumberFormat.Field.FRACTION,
80 NumberFormat.Field.FRACTION, 10, 11);
112 NumberFormat.Field.FRACTION, 9, 11);
186 v.add(new FieldContainer(4, 6, NumberFormat.Field.FRACTION));
201 v.add(new FieldContainer(9, 11, NumberFormat.Field.FRACTION));
211 v.add(new FieldContainer(9, 11, NumberFormat.Field.FRACTION));
220 v.add(new FieldContainer(5, 7, NumberFormat.Field.FRACTION));
229 v.add(new FieldContainer(6, 8, NumberFormat.Field.FRACTION));
254 v.add(new FieldContainer(5, 6, NumberFormat.Field.FRACTION));
265 v.add(new FieldContainer(3, 5, NumberFormat.Field.FRACTION));
    [all...]
  /prebuilts/sdk/current/support/v17/leanback/res/values/
dimens.xml 39 <item name="lb_browse_rows_scale" type="fraction">80%</item>
49 <item name="lb_browse_header_unselect_alpha" type="fraction">50%</item>
61 <item name="lb_focus_zoom_factor_xsmall" type="fraction">106%</item>
62 <item name="lb_focus_zoom_factor_small" type="fraction">110%</item>
63 <item name="lb_focus_zoom_factor_medium" type="fraction">114%</item>
64 <item name="lb_focus_zoom_factor_large" type="fraction">118%</item>
159 <item name="lb_view_active_level" type="fraction">0%</item>
160 <item name="lb_view_dimmed_level" type="fraction">60%</item>
187 <item name="lb_search_orb_focused_zoom" type="fraction">120%</item>
197 <item name="lb_search_bar_speech_orb_max_level_zoom" type="fraction">144%</item
    [all...]
  /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/base/core/java/android/net/
SntpClient.java 185 long fraction = read32(buffer, offset + 4); local
186 return ((seconds - OFFSET_1900_TO_1970) * 1000) + ((fraction * 1000L) / 0x100000000L);
204 long fraction = milliseconds * 0x100000000L / 1000L; local
205 // write fraction in big endian format
206 buffer[offset++] = (byte)(fraction >> 24);
207 buffer[offset++] = (byte)(fraction >> 16);
208 buffer[offset++] = (byte)(fraction >> 8);
  /frameworks/base/libs/hwui/
Animator.cpp 143 float fraction = 1.0f; local
145 fraction = (float)(context.frameTimeMs() - mStartTime) / mDuration;
147 if (fraction >= 1.0f) {
148 fraction = 1.0f;
152 fraction = mInterpolator->interpolate(fraction);
153 setValue(mTarget, mFromValue + (mDeltaValue * fraction));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ScrimController.java 115 public void setPanelExpansion(float fraction) {
116 if (mFraction != fraction) {
117 mFraction = fraction;
215 float fraction = 1 - behindFraction; local
216 fraction = (float) Math.pow(fraction, 0.8f);
218 setScrimInFrontColor(fraction * SCRIM_IN_FRONT_ALPHA);
224 float fraction = Math.max(0, Math.min(mFraction, 1)); local
226 setScrimBehindColor(fraction
  /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
  /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));
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/centrality/
degree_alg.py 24 The degree centrality for a node v is the fraction of nodes it
58 The in-degree centrality for a node v is the fraction of nodes its
96 The out-degree centrality for a node v is the fraction of nodes its
  /frameworks/av/media/libeffects/testlibs/
AudioCommon.h 34 // Number of fraction bits for audio coefficient.
40 // Number of fraction bits for audio sample.
  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 159 * column to the other. The delay is expressed as a fraction of the
162 * @return a fraction of the animation duration
173 * Sets the delay, as a fraction of the animation duration, by which the
176 * @param columnDelay a fraction of the animation duration
188 * row to the other. The delay is expressed as a fraction of the
191 * @return a fraction of the animation duration
202 * Sets the delay, as a fraction of the animation duration, by which the
205 * @param rowDelay a fraction of the animation duration
  /frameworks/base/graphics/java/android/graphics/drawable/
RotateDrawable.java 209 * relative, the position represents a fraction of the drawable
232 * Sets whether the X pivot value represents a fraction of the drawable
235 * @param relative true if the X pivot represents a fraction of the drawable
247 * @return true if the X pivot represents a fraction of the drawable width,
259 * relative, the position represents a fraction of the drawable
282 * Sets whether the Y pivot value represents a fraction of the drawable
285 * @param relative True if the Y pivot represents a fraction of the drawable
297 * @return true if the Y pivot represents a fraction of the drawable height,
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PreviewPageFrame.java 45 R.fraction.page_selected_alpha, 1, 1);
47 R.fraction.page_unselected_alpha, 1, 1);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_significand.c 19 * for exercising the fraction-part(F) IEEE 754-1985 test vector.
  /development/ndk/platforms/android-3/arch-arm/include/machine/
ieee.h 54 * Define the number of bits in each fraction and exponent.
69 * in the fraction; to represent 2 , we need two, and so on. This
161 * Floats whose exponent is zero are either zero (iff all fraction
165 * high fraction; if the bit is set, it is a `quiet NaN'.
  /development/ndk/platforms/android-3/header-patches/include/machine/
ieee.h 54 * Define the number of bits in each fraction and exponent.
69 * in the fraction; to represent 2 , we need two, and so on. This
130 * Floats whose exponent is zero are either zero (iff all fraction
134 * high fraction; if the bit is set, it is a `quiet NaN'.
  /development/ndk/platforms/android-9/arch-mips/include/machine/
ieee.h 50 * Define the number of bits in each fraction and exponent.
65 * in the fraction; to represent 2 , we need two, and so on. This
148 * Floats whose exponent is zero are either zero (iff all fraction
152 * high fraction; if the bit is set, it is a `quiet NaN'.
  /development/ndk/platforms/android-9/arch-x86/include/machine/
ieee.h 51 * Define the number of bits in each fraction and exponent.
66 * in the fraction; to represent 2 , we need two, and so on. This
112 * Floats whose exponent is zero are either zero (iff all fraction
116 * high fraction; if the bit is set, it is a `quiet NaN'.
  /external/bison/lib/
frexpl.c 1 /* Split a 'long double' into fraction and mantissa.
printf-frexp.h 1 /* Split a double into fraction and mantissa, for hexadecimal printf.

Completed in 414 milliseconds

1 2 3 4 56 7 8 91011>>