HomeSort by relevance Sort by last modified time
    Searched full:ceiling (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/webkit/LayoutTests/fast/xpath/
invalid-functions.html 17 shouldThrow('document.createExpression("ceiling(1,2)", null)');
18 shouldThrow('document.evaluate("ceiling(1,2)", document, null, XPathResult.ANY_TYPE, null)');
19 shouldThrow('document.createExpression("ceiling(1,2)", null).evaluate(document, XPathResult.ANY_TYPE, null)');
invalid-functions-expected.txt 5 PASS document.createExpression("ceiling(1,2)", null) threw exception Error: INVALID_EXPRESSION_ERR: DOM XPath Exception 51.
6 PASS document.evaluate("ceiling(1,2)", document, null, XPathResult.ANY_TYPE, null) threw exception Error: INVALID_EXPRESSION_ERR: DOM XPath Exception 51.
7 PASS document.createExpression("ceiling(1,2)", null).evaluate(document, XPathResult.ANY_TYPE, null) threw exception Error: INVALID_EXPRESSION_ERR: DOM XPath Exception 51.
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
prune.h 90 Weight ceiling = Times((*fdistance)[fst->Start()], opts.threshold); local
93 if (less(ceiling, Times((*idistance)[state], (*fdistance)[state]))) {
104 if(less(ceiling, weight)) {
109 if (less(ceiling, Times((*idistance)[state], fst->Final(state))))
175 Weight ceiling = Times((*fdistance)[ifst.Start()], opts.threshold); local
188 if (less(ceiling, Times((*idistance)[state], (*fdistance)[state])))
193 if (!less(ceiling, Times((*idistance)[state], ifst.Final(state))))
213 if (!less(ceiling, weight)) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SetNavigationTester.java 95 assertNull(navigableSet.ceiling(samples.e0));
130 assertEquals(a, navigableSet.ceiling(samples.e0));
186 assertEquals(a, navigableSet.ceiling(a));
187 assertEquals(c, navigableSet.ceiling(b));
188 assertEquals(c, navigableSet.ceiling(c));
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalConstructorsTest.java 38 RoundingMode rm = RoundingMode.CEILING;
46 // Now test more than just RoundingMode.CEILING:
64 mc = new MathContext(33, RoundingMode.CEILING);
119 RoundingMode rm = RoundingMode.CEILING;
127 // Now test more than just RoundingMode.CEILING:
151 mc = new MathContext(33, RoundingMode.CEILING);
211 mc = new MathContext(33, RoundingMode.CEILING);
282 RoundingMode rm = RoundingMode.CEILING;
297 // Now test more than just RoundingMode.CEILING:
320 mc = new MathContext(33, RoundingMode.CEILING);
    [all...]
OldBigDecimalTest.java 81 setScale2 = setScale1.setScale(17, RoundingMode.CEILING);
88 // testing rounding Mode RoundingMode.CEILING
90 setScale2 = setScale1.setScale(1, RoundingMode.CEILING);
92 "the number 1234.5908 after setting scale to 1/RoundingMode.CEILING is wrong",
95 setScale2 = setNeg.setScale(1, RoundingMode.CEILING);
97 "the number -1234.5908 after setting scale to 1/RoundingMode.CEILING is wrong",
OldBigDecimalCompareTest.java 44 mc = new MathContext(34, RoundingMode.CEILING);
  /external/guava/guava/src/com/google/common/collect/
ForwardingSortedSet.java 116 Object ceiling = self.tailSet(object).first(); local
117 return unsafeCompare(ceiling, object) == 0;
141 Object ceiling = iterator.next(); local
142 if (unsafeCompare(ceiling, object) == 0) {
  /external/webkit/LayoutTests/fast/xpath/4XPath/Core/
test_core_functions-expected.txt 57 PASS DOM.evaluate("ceiling(3.14)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is 4
58 PASS DOM.evaluate("ceiling(number('NaN'))", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is NaN
59 PASS DOM.evaluate("ceiling(1 div 0)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is Infinity
60 PASS DOM.evaluate("ceiling(0.5)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is 1
61 PASS DOM.evaluate("ceiling(-0.5)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue is -0
test_core_functions.html 93 shouldBe('DOM.evaluate("ceiling(3.14)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue', '4');
94 shouldBe('DOM.evaluate("ceiling(number(\'NaN\'))", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue', 'NaN');
95 shouldBe('DOM.evaluate("ceiling(1 div 0)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue', 'Infinity');
96 shouldBe('DOM.evaluate("ceiling(0.5)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue', '1');
97 shouldBe('DOM.evaluate("ceiling(-0.5)", CHILD1, null, XPathResult.ANY_TYPE, null).numberValue', '-0');
  /external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalConstructorsTest.java 102 RoundingMode rm = RoundingMode.CEILING;
119 RoundingMode rm = RoundingMode.CEILING;
176 RoundingMode rm = RoundingMode.CEILING;
200 RoundingMode rm = RoundingMode.CEILING;
217 RoundingMode rm = RoundingMode.CEILING;
292 RoundingMode rm = RoundingMode.CEILING;
355 RoundingMode rm = RoundingMode.CEILING;
382 RoundingMode rm = RoundingMode.CEILING;
676 RoundingMode rm = RoundingMode.CEILING;
  /external/skia/include/core/
SkFloatBits.h 54 /** Given the bit representation of a float, return its ceiling as an int.
123 /** Return the ceiling of the float as an int.
  /external/webkit/LayoutTests/fast/xpath/py-dom-xpath/
functions-expected.txt 70 PASS ceiling(1.99)
71 PASS ceiling(-1.99)
  /libcore/luni/src/main/java/java/math/
RoundingMode.java 48 CEILING(BigDecimal.ROUND_CEILING),
103 return CEILING;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCeiling.java 28 * Execute the Ceiling() function.
  /libcore/luni/src/test/java/tests/api/java/math/
RoundingModeTest.java 29 assertEquals("valueOf failed for ROUND_CEILING", RoundingMode.valueOf(BigDecimal.ROUND_CEILING), RoundingMode.CEILING);
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 24 import static java.math.RoundingMode.CEILING;
78 case CEILING:
158 case CEILING:
194 case CEILING:
293 int approxSize = IntMath.divide(n * IntMath.log2(n, CEILING), Long.SIZE, CEILING);
IntMath.java 87 case CEILING:
128 case CEILING:
216 case CEILING:
280 case CEILING:
  /external/guava/guava/src/com/google/common/hash/
BloomFilterStrategies.java 65 this(new long[IntMath.divide(bits, 64, RoundingMode.CEILING)]);
  /frameworks/base/core/java/android/util/
FloatMath.java 46 * @return the ceiling of value
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
FloatMath_Delegate.java 54 * @return the ceiling of value
  /libcore/luni/src/main/java/java/util/
TreeMap.java 209 CEILING,
226 return CEILING;
229 case CEILING:
291 case CEILING:
314 case CEILING:
332 case CEILING:
654 return immutableCopy(find(key, CEILING));
658 Entry<K, V> entry = find(key, CEILING);
1008 public K ceiling(K key) {
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeSet.java 77 @Override public E ceiling(E e) { method in class:SafeTreeSet
78 return delegate.ceiling(checkValid(e));
  /external/guava/guava-tests/test/com/google/common/math/
BigIntegerMathTest.java 29 import static java.math.RoundingMode.CEILING;
99 for (RoundingMode mode : asList(CEILING, UP)) {
186 for (RoundingMode mode : asList(CEILING, UP)) {
278 for (RoundingMode mode : asList(CEILING, UP)) {
  /external/libvpx/examples/includes/geshi/geshi/
modula3.php 61 'ABS','ADR','ADRSIZE','BITSIZE','BYTESIZE','CEILING','DEC','DISPOSE',

Completed in 539 milliseconds

1 2 3 4 5 6 7