/packages/inputmethods/LatinIME/java/res/values/ |
attrs.xml | 82 <attr name="languageOnSpacebarTextRatio" format="fraction" /> 166 <attr name="gestureDetectFastMoveSpeedThreshold" format="fraction" /> 173 <attr name="gestureDynamicDistanceThresholdFrom" format="fraction" /> 174 <attr name="gestureDynamicDistanceThresholdTo" format="fraction" /> 176 <attr name="gestureSamplingMinimumDistance" format="fraction" /> 180 <attr name="gestureRecognitionSpeedThreshold" format="fraction" /> 226 <attr name="alphaObsoleted" format="fraction" /> 228 <attr name="centerSuggestionPercentile" format="fraction" /> 245 <attr name="keyboardTopPadding" format="fraction" /> 246 <attr name="keyboardBottomPadding" format="fraction" /> [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...] |
/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...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
NFRuleSet.java | 47 * These are a pile of fraction rules in declared order. They may have alternate 71 * True if the rule set is a fraction rule set. A fraction rule set 74 * fraction rule, and is only called upon to format values between 75 * 0 and 1. A fraction rule set has different rule-selection 205 // same as the preceding rule's base value in fraction 257 * Determine the best fraction rule to use. Rules matching the decimal point from 285 * Flags this rule set as a fraction rule set. This function is 287 * set is a fraction rule set. We don't know a rule set is a 288 * fraction rule set until we see it used somewhere. This functio [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
NFRuleSet.java | 46 * These are a pile of fraction rules in declared order. They may have alternate 70 * True if the rule set is a fraction rule set. A fraction rule set 73 * fraction rule, and is only called upon to format values between 74 * 0 and 1. A fraction rule set has different rule-selection 204 // same as the preceding rule's base value in fraction 256 * Determine the best fraction rule to use. Rules matching the decimal point from 284 * Flags this rule set as a fraction rule set. This function is 286 * set is a fraction rule set. We don't know a rule set is a 287 * fraction rule set until we see it used somewhere. This functio [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
PathInterpolatorBuilder.java | 74 float fraction = pointComponents[componentIndex++]; local 77 if (fraction == prevFraction && x != prevX) { 93 prevFraction = fraction; 145 float fraction = tInRange / xRange; local 149 return startY + (fraction * (endY - startY));
|
TouchAnimator.java | 55 public void setPosition(float fraction) { 56 float t = MathUtils.constrain((fraction - mStartDelay) / mSpan, 0, 1); 212 void setValue(float fraction, Object target) { 214 for (i = 1; i < mSize - 1 && fraction > mFrameWidth; i++); 215 float amount = fraction / mFrameWidth;
|
/prebuilts/go/darwin-x86/src/strconv/ |
extfloat.go | 395 fraction := f.mant - (uint64(integer) << shift) 441 // Emit digits for the fractional part. Each time, 10*fraction 444 fraction *= 10 450 digit := fraction >> shift 452 fraction -= digit << shift 464 // (rest<<shift | fraction) / (pow10 << shift) 465 // fraction being known with a ±? uncertainty. 469 // fraction / (1 << shift) 470 // fraction being known with a ±? uncertainty. 474 ok := adjustLastDigitFixed(d, uint64(rest)<<shift|fraction, pow10, shift, ? [all...] |
/prebuilts/go/linux-x86/src/strconv/ |
extfloat.go | 395 fraction := f.mant - (uint64(integer) << shift) 441 // Emit digits for the fractional part. Each time, 10*fraction 444 fraction *= 10 450 digit := fraction >> shift 452 fraction -= digit << shift 464 // (rest<<shift | fraction) / (pow10 << shift) 465 // fraction being known with a ±? uncertainty. 469 // fraction / (1 << shift) 470 // fraction being known with a ±? uncertainty. 474 ok := adjustLastDigitFixed(d, uint64(rest)<<shift|fraction, pow10, shift, ? [all...] |
/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));
|
/frameworks/support/v7/appcompat/res/values/ |
dimens.xml | 41 (the screen is in landscape). This may be either a fraction or a dimension.--> 44 (the screen is in portrait). This may be either a fraction or a dimension.--> 47 (the screen is in portrait). This may be either a fraction or a dimension.--> 50 (the screen is in landscape). This may be either a fraction or a dimension.--> 87 be either a fraction or a dimension. --> 92 be either a fraction or a dimension. -->
|
/prebuilts/sdk/current/support/v7/appcompat/res/values/ |
dimens.xml | 41 (the screen is in landscape). This may be either a fraction or a dimension.--> 44 (the screen is in portrait). This may be either a fraction or a dimension.--> 47 (the screen is in portrait). This may be either a fraction or a dimension.--> 50 (the screen is in landscape). This may be either a fraction or a dimension.--> 87 be either a fraction or a dimension. --> 92 be either a fraction or a dimension. -->
|
/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/net/ |
SntpClient.java | 236 long fraction = read32(buffer, offset + 4); local 238 if (seconds == 0 && fraction == 0) { 241 return ((seconds - OFFSET_1900_TO_1970) * 1000) + ((fraction * 1000L) / 0x100000000L); 265 long fraction = milliseconds * 0x100000000L / 1000L; local 266 // write fraction in big endian format 267 buffer[offset++] = (byte)(fraction >> 24); 268 buffer[offset++] = (byte)(fraction >> 16); 269 buffer[offset++] = (byte)(fraction >> 8);
|
/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 | 210 * fraction of the drawable width. Otherwise, the position represents an 234 * Sets whether the X pivot value represents a fraction of the drawable 237 * @param relative true if the X pivot represents a fraction of the drawable 249 * @return true if the X pivot represents a fraction of the drawable width, 262 * fraction of the drawable height. Otherwise, the position represents an 286 * Sets whether the Y pivot value represents a fraction of the drawable 289 * @param relative True if the Y pivot represents a fraction of the drawable 301 * @return true if the Y pivot represents a fraction of the drawable height,
|
/frameworks/base/libs/hwui/ |
PropertyValuesAnimatorSet.h | 34 // fraction range: [0, 1], iteration range [0, repeatCount] 35 void setFraction(float fraction, long iteration);
|
/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);
|
/packages/apps/PackageInstaller/res/values-watch/ |
dimens.xml | 41 <item name="default_settings_circle_radius_percent" format="fraction" type="dimen">40%</item> 42 <item name="selected_settings_circle_radius_percent" format="fraction" type="dimen">50%</item>
|
/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-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.
|