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

1 2

  /libcore/luni/src/main/java/java/math/
RoundingMode.java 57 FLOOR(BigDecimal.ROUND_FLOOR),
107 return FLOOR;
BigDecimal.java 72 * @see RoundingMode#FLOOR
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalCompareTest.java 41 mc = new MathContext(34, RoundingMode.FLOOR);
57 MathContext mc = new MathContext(37, RoundingMode.FLOOR);
OldBigDecimalArithmeticTest.java 32 mc = new MathContext(17, RoundingMode.FLOOR);
57 mc = new MathContext(17, RoundingMode.FLOOR);
80 mc = new MathContext(17, RoundingMode.FLOOR);
128 mc = new MathContext(7, RoundingMode.FLOOR);
135 mc = new MathContext(4, RoundingMode.FLOOR);
158 mc = new MathContext(0, RoundingMode.FLOOR);
167 mc = new MathContext(0, RoundingMode.FLOOR);
180 // mc = new MathContext(3, RoundingMode.FLOOR);
193 mc = new MathContext(17, RoundingMode.FLOOR);
220 mc = new MathContext(17, RoundingMode.FLOOR);
    [all...]
BigDecimalTest.java 64 BigDecimal rounded = bigDecimal.round(new MathContext(2, RoundingMode.FLOOR));
OldBigDecimalConstructorsTest.java 70 mc = new MathContext(34, RoundingMode.FLOOR);
157 mc = new MathContext(34, RoundingMode.FLOOR);
217 mc = new MathContext(34, RoundingMode.FLOOR);
257 mc = new MathContext(28, RoundingMode.FLOOR);
268 mc = new MathContext(17, RoundingMode.FLOOR);
326 mc = new MathContext(34, RoundingMode.FLOOR);
465 mc = new MathContext(8, RoundingMode.FLOOR);
603 mc = new MathContext(12, RoundingMode.FLOOR);
708 mc = new MathContext(7, RoundingMode.FLOOR);
    [all...]
OldBigDecimalTest.java 113 // testing rounding Mode RoundingMode.FLOOR
114 setScale2 = setScale1.setScale(1, RoundingMode.FLOOR);
116 "the number 1234.5908 after setting scale to 1/RoundingMode.FLOOR is wrong",
118 setScale2 = setNeg.setScale(1, RoundingMode.FLOOR);
120 "the number -1234.5908 after setting scale to 1/RoundingMode.FLOOR is wrong",
  /libcore/luni/src/test/java/tests/api/java/math/
RoundingModeTest.java 31 assertEquals("valueOf failed for ROUND_FLOOR", RoundingMode.valueOf(BigDecimal.ROUND_FLOOR), RoundingMode.FLOOR);
  /libcore/luni/src/main/java/java/util/
TreeMap.java 206 FLOOR,
225 case FLOOR:
230 return FLOOR;
288 case FLOOR:
312 case FLOOR:
330 case FLOOR:
645 return immutableCopy(find(key, FLOOR));
649 Entry<K, V> entry = find(key, FLOOR);
1004 public K floor(K key) {
    [all...]
  /external/v8/src/
macros.py 113 macro FLOOR(arg) = $floor(arg);
151 macro DAY(time) = ($floor(time / 86400000));
153 macro HOUR_FROM_TIME(time) = (Modulo($floor(time / 3600000), 24));
154 macro MIN_FROM_TIME(time) = (Modulo($floor(time / 60000), 60));
156 macro SEC_FROM_TIME(time) = (Modulo($floor(time / 1000), 60));
date.js 72 + FLOOR((year-1969)/4)
73 - FLOOR((year-1901)/100)
74 + FLOOR((year-1601)/400);
516 var hours = FLOOR((sign * timezoneOffset)/60);
517 var min = FLOOR((sign * timezoneOffset)%60);
  /external/freetype/src/raster/
ftraster.c 432 #define FLOOR( x ) ( (x) & -ras.precision )
439 #define IS_TOP_OVERSHOOT( x ) ( x - FLOOR( x ) >= ras.precision_half )
    [all...]
  /external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalCompareTest.java 374 RoundingMode rm = RoundingMode.FLOOR;
434 RoundingMode rm = RoundingMode.FLOOR;
BigDecimalArithmeticTest.java 96 MathContext mc = new MathContext(5, RoundingMode.FLOOR);
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /libcore/luni/src/main/java/libcore/icu/
NativeDecimalFormat.java 493 case FLOOR: nativeRoundingMode = 1; break;
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DecimalFormatTest.java     [all...]
  /external/freetype/src/smooth/
ftgrays.c 260 #define FLOOR( x ) ( (x) & -ONE_PIXEL )
    [all...]
  /external/v8/test/mjsunit/
unicode-test.js     [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 351 milliseconds

1 2