HomeSort by relevance Sort by last modified time
    Searched refs:FRACTION (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /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...]
Support_MessageFormat.java 67 NumberFormat.Field.FRACTION, 0, 0);
117 v.add(new FieldContainer(63, 64, NumberFormat.Field.FRACTION));
  /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...]
Support_MessageFormat.java 64 NumberFormat.Field.FRACTION, 0, 0);
114 v.add(new FieldContainer(63, 64, NumberFormat.Field.FRACTION));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
Fraction.java 17 package org.apache.commons.math.fraction;
37 public class Fraction
39 implements FieldElement<Fraction>, Comparable<Fraction>, Serializable {
41 /** A fraction representing "2 / 1". */
42 public static final Fraction TWO = new Fraction(2, 1);
44 /** A fraction representing "1". */
45 public static final Fraction ONE = new Fraction(1, 1)
    [all...]
BigFraction.java 17 package org.apache.commons.math.fraction;
40 /** A fraction representing "2 / 1". */
43 /** A fraction representing "1". */
46 /** A fraction representing "0". */
49 /** A fraction representing "-1 / 1". */
52 /** A fraction representing "4/5". */
55 /** A fraction representing "1/5". */
58 /** A fraction representing "1/2". */
61 /** A fraction representing "1/4". */
64 /** A fraction representing "1/3". *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttributeInfo.java 32 import static com.android.ide.common.api.IAttributeInfo.Format.FRACTION;
348 if (mFormats.contains(FRACTION)) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatAPIC.java 329 v.add(new FieldContainer(4, 6, NumberFormat.Field.FRACTION));
353 v.add(new FieldContainer(5, 7, NumberFormat.Field.FRACTION));
362 v.add(new FieldContainer(6, 8, NumberFormat.Field.FRACTION));
387 v.add(new FieldContainer(5, 6, NumberFormat.Field.FRACTION));
398 v.add(new FieldContainer(3, 5, NumberFormat.Field.FRACTION));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/
LocalizedFormats.java 58 CANNOT_CONVERT_OBJECT_TO_FRACTION("cannot convert given object to a fraction number: {0}"),
63 CANNOT_FORMAT_OBJECT_TO_FRACTION("cannot format given object as a fraction number"),
74 CONTINUED_FRACTION_INFINITY_DIVERGENCE("Continued fraction convergents diverged to +/- infinity for value {0}"),
75 CONTINUED_FRACTION_NAN_DIVERGENCE("Continued fraction diverged to NaN for value {0}"),
99 FAILED_FRACTION_CONVERSION("Unable to convert {0} to fraction after {1} iterations"),
103 FRACTION_CONVERSION_OVERFLOW("Overflow trying to convert {0} to fraction ({1}/{2})"),
154 NON_CONVERGENT_CONTINUED_FRACTION("Continued fraction convergents failed to converge for value {0}"),
220 FRACTION("fraction"), /* keep */
243 OVERFLOW_IN_FRACTION("overflow in fraction {0}/{1}, cannot negate")
    [all...]
  /external/fonttools/Lib/fontTools/
agl.py 451 215D;fiveeighths;VULGAR FRACTION FIVE EIGHTHS
454 2044;fraction;FRACTION SLASH
561 215B;oneeighth;VULGAR FRACTION ONE EIGHTH
562 00BD;onehalf;VULGAR FRACTION ONE HALF
563 00BC;onequarter;VULGAR FRACTION ONE QUARTER
564 2153;onethird;VULGAR FRACTION ONE THIRD
626 215E;seveneighths;VULGAR FRACTION SEVEN EIGHTHS
649 215C;threeeighths;VULGAR FRACTION THREE EIGHTHS
650 00BE;threequarters;VULGAR FRACTION THREE QUARTER
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NumberFormat.java 83 * subclasses of NumberFormat. With this format, a fraction like
237 * the position of the fraction part of a formatted number should be returned.
    [all...]
DecimalFormat.java 284 * number := (integer ('.' fraction)?) | sigDigits
288 * fraction := '0'* '#'*
368 * <li>If the number of actual fraction digits exceeds the <em>maximum fraction
369 * digits</em>, then half-even rounding it performed to the maximum fraction digits. For
370 * example, 0.125 is formatted as "0.12" if the maximum fraction digits is 2. This
373 * <li>If the number of actual fraction digits is less than the <em>minimum fraction
375 * "0.1250" if the mimimum fraction digits is set to 4.
378 * after the decimal, where <em>j</em> is less than the maximum fraction digits. Fo
    [all...]
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
DecimalFormatICU.java 433 } else if (icuAttribute == NumberFormat.Field.FRACTION) {
434 jdkAttribute = java.text.NumberFormat.Field.FRACTION;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlPrettyPrinter.java 183 case FRACTION:
  /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...]
  /libcore/luni/src/main/java/libcore/icu/
NativeDecimalFormat.java 98 // The old java field values were 0 for integer and 1 for fraction.
101 // fraction positions match the old field values.
103 NumberFormat.Field.FRACTION, // 1 UNUM_FRACTION_FIELD
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 146 AttributeInfo info = new AttributeInfo("test", EnumSet.<Format>of(Format.FRACTION));
  /prebuilts/sdk/tools/lib/
common.jar 
  /prebuilts/devtools/tools/lib/
rule-api.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java     [all...]
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.2.0/
layoutlib-api-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.4.0/
layoutlib-api-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.4.2/
layoutlib-api-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.5.0/
layoutlib-api-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/22.5.1/
layoutlib-api-22.5.1.jar 

Completed in 1325 milliseconds

1 2 3 4