HomeSort by relevance Sort by last modified time
    Searched full:fraction (Results 251 - 275 of 1230) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/ui/cocoa/
fullscreen_controller.h 109 // Gets the current floating bar shown fraction.
112 // Sets a new current floating bar shown fraction. NOTE: This function has side
114 - (void)changeFloatingBarShownFraction:(CGFloat)fraction;
  /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/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);
  /external/stlport/src/
num_get_float.cpp 265 // Convert a 64-bitb fraction * 10^exp to a 64-bit fraction * 2^bexp.
266 // p: 64-bit fraction
339 * 2) left adjusted fraction
340 * 3) right adjusted fraction
341 * 4) exponent and fraction
368 bexp = 64; /* convert from 64b int to fraction */
384 /* At this point we have a 64b fraction and a binary exponent
455 * Fraction bits 52
503 int bexp = 64; /* convert from 64b int to fraction */
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 265 // Convert a 64-bitb fraction * 10^exp to a 64-bit fraction * 2^bexp.
266 // p: 64-bit fraction
339 * 2) left adjusted fraction
340 * 3) right adjusted fraction
341 * 4) exponent and fraction
368 bexp = 64; /* convert from 64b int to fraction */
384 /* At this point we have a 64b fraction and a binary exponent
455 * Fraction bits 52
503 int bexp = 64; /* convert from 64b int to fraction */
    [all...]
  /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/native/opengl/tests/hwc/
hwcTestLib.cpp 156 // Color fraction class to string conversion
761 * 2. Convert the in gamut color into the fraction of the fromFromat
764 * 3. Convert from the fraction of the in gamut from format range to
765 * the fraction of the in gamut to format range. Produce black
768 * 4. Covert from the fraction of the in gamut to format to the
769 * fraction of the full range to format.
785 * | | | | +-- fraction of full range
786 * | | | +-- fraction of valid range
788 * | +-- fraction of valid range
789 * +-- fraction of full rang
    [all...]
  /libcore/luni/src/main/java/java/text/
NumberFormat.java 407 * Returns the maximum number of fraction digits that are printed when
408 * formatting. If the maximum is less than the number of fraction digits,
411 * @return the maximum number of fraction digits.
429 * Returns the minimum number of fraction digits that are printed when
432 * @return the minimum number of fraction digits.
580 * values. The min and max fraction digits remain the same.
607 * Sets the maximum number of fraction digits that are printed when
608 * formatting. If the maximum is less than the number of fraction digits,
612 * the maximum number of fraction digits.
637 * 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/chromium_org/third_party/WebKit/Source/platform/
LayoutUnit.h 164 LayoutUnit fraction() const function in class:WebCore::LayoutUnit
166 // Add the fraction to the size (as opposed to the full location) to avoid overflows.
167 // Compute fraction using the mod operator to preserve the sign of the value as it may affect rounding.
168 LayoutUnit fraction; local
169 fraction.setRawValue(rawValue() % kFixedPointDenominator);
170 return fraction;
768 LayoutUnit fraction = location.fraction(); local
769 return (fraction + size).round() - fraction.round()
    [all...]
  /external/chromium_org/media/base/
yuv_convert.cc 404 // fraction to avoid degenerating to point-sampling - we should really just
405 // fix the fraction at 50% for all pixels in that case.
487 int fraction = (source_top & kFractionMask) >> 8; local
489 y_temp + source_y_left, y0_ptr, y1_ptr, source_y_width, fraction);
491 u_temp + source_uv_left, u0_ptr, u1_ptr, source_uv_width, fraction);
493 v_temp + source_uv_left, v0_ptr, v1_ptr, source_uv_width, fraction);
  /external/llvm/lib/Analysis/
ProfileEstimatorPass.cpp 218 double fraction = floor(incoming/Edges.size()); local
223 w = fraction;
224 incoming -= fraction;
289 double fraction = Edges.size() ? floor(BBWeight/Edges.size()) : 0.0; local
295 EdgeInformation[BB->getParent()][*ei] += fraction;
296 BBWeight -= fraction;
  /hardware/invensense/60xx/mlsdk/mllite/
mldl_cfg_mpu.c 97 MPL_LOGD("slave_accel->range.fraction= %02x\n", (int)mldl_cfg->accel->range.fraction);
113 MPL_LOGD("slave_compass->range.fraction= %02x\n", (int)mldl_cfg->compass->range.fraction);
129 MPL_LOGD("slave_pressure->range.fraction= %02x\n", (int)mldl_cfg->pressure->range.fraction);
  /external/ceres-solver/internal/ceres/
jet_quaternion_integration_test.cc 88 const J fraction(0.1);
89 Quaternion<J> c = Quaternion<J>::Slerp(a, b, fraction);
91 Quaternion<double>::Slerp(double_a, double_b, fraction.a);
  /external/chromium_org/third_party/icu/source/data/unidata/
DerivedNumericValues.txt 19 # a whole integer where possible or as a rational fraction, e.g. "1/6".
42 0C78 ; 0.0 ; ; 0 # No TELUGU FRACTION DIGIT ZERO FOR ODD POWERS OF FOUR
63 2189 ; 0.0 ; ; 0 # No VULGAR FRACTION ZERO THIRDS
92 0B75 ; 0.0625 ; ; 1/16 # No ORIYA FRACTION ONE SIXTEENTH
93 A833 ; 0.0625 ; ; 1/16 # No NORTH INDIC FRACTION ONE SIXTEENTH
99 2152 ; 0.1 ; ; 1/10 # No VULGAR FRACTION ONE TENTH
105 2151 ; 0.11111111 ; ; 1/9 # No VULGAR FRACTION ONE NINTH
112 0B76 ; 0.125 ; ; 1/8 # No ORIYA FRACTION ONE EIGHTH
113 215B ; 0.125 ; ; 1/8 # No VULGAR FRACTION ONE EIGHTH
114 A834 ; 0.125 ; ; 1/8 # No NORTH INDIC FRACTION ONE EIGHT
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
currtest.c 169 /* Make sure that you can format normal fraction digits. */
175 /* Make sure that you can format 2 fraction digits. */
182 /* Make sure that you can format more fraction digits. */
  /external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp 82 SkScalar fraction = SkScalarFraction(fRepeat); local
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
84 (SkMSec) SkScalarMulFloor(fraction, totalTime);
  /external/icu4c/test/cintltst/
currtest.c 169 /* Make sure that you can format normal fraction digits. */
175 /* Make sure that you can format 2 fraction digits. */
182 /* Make sure that you can format more fraction digits. */
  /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 */
  /external/skia/src/utils/
SkInterpolator.cpp 82 SkScalar fraction = SkScalarFraction(fRepeat); local
83 offsetTime = fraction == 0 && fRepeat > 0 ? totalTime :
84 (SkMSec) SkScalarMulFloor(fraction, totalTime);
  /external/smack/src/org/xbill/DNS/
LOCRecord.java 84 double fraction = Integer.parseInt(parts[1]); local
86 fraction *= -1;
88 return value + (fraction / Math.pow(10, digits));
  /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
  /bootable/recovery/
screen_ui.h 40 void SetProgress(float fraction);

Completed in 810 milliseconds

<<11121314151617181920>>