/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
case.py | 527 def assertAlmostEqual(self, first, second, places=None, msg=None, delta=None): 529 difference rounded to the given number of decimal places 533 Note that decimal places (from zero) are usually not the same 542 if delta is not None and places is not None: 543 raise TypeError("specify delta or places not both") 553 if places is None: 554 places = 7 556 if round(abs(second-first), places) == 0: 559 standardMsg = '%s != %s within %r places' % (safe_repr(first), 561 places) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
case.py | 527 def assertAlmostEqual(self, first, second, places=None, msg=None, delta=None): 529 difference rounded to the given number of decimal places 533 Note that decimal places (from zero) are usually not the same 542 if delta is not None and places is not None: 543 raise TypeError("specify delta or places not both") 553 if places is None: 554 places = 7 556 if round(abs(second-first), places) == 0: 559 standardMsg = '%s != %s within %r places' % (safe_repr(first), 561 places) [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/value/ |
list_of_scalar_values_unittest.py | 31 164.71186, places=4) 45 places=4) 52 places=4) 200 self.assertAlmostEqual(d['std'], 0.7071, places=4)
|
/external/v8/test/mjsunit/ |
no-semicolon.js | 29 // in various places.
|
/external/valgrind/massif/tests/ |
custom_alloc.post.exp | 55 ->00.00% (0B) in 1+ places, all below ms_print's threshold (01.00%)
|
insig.post.exp | 55 ->00.54% (96B) in 1+ places, all below ms_print's threshold (01.00%) 73 ->01.34% (256B) in 16 places, all below massif's threshold (0.99%)
|
/external/libunwind/doc/ |
unw_getcontext.tex | 35 initialized by \Func{unw\_getcontext()} in places where a structure
|
/external/v8/test/webkit/ |
function-constructor-newline-after-brace.js | 25 "This test checks that the Function constructor places a newline after the opening brace, for compatibility reasons. It passes if there are no syntax error exceptions."
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
test_callbacks.py | 20 self.assertAlmostEqual(result, arg, places=5) 28 self.assertAlmostEqual(result, arg, places=5)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
test_callbacks.py | 20 self.assertAlmostEqual(result, arg, places=5) 28 self.assertAlmostEqual(result, arg, places=5)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_callbacks.py | 20 self.assertAlmostEqual(result, arg, places=5) 28 self.assertAlmostEqual(result, arg, places=5)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_callbacks.py | 20 self.assertAlmostEqual(result, arg, places=5) 28 self.assertAlmostEqual(result, arg, places=5)
|
/frameworks/base/docs/html/ |
gms_navtree_data.js | [all...] |
/external/chromium-trace/catapult/third_party/coverage/coverage/htmlfiles/ |
coverage_html.js | 141 // and adapt to the number of decimal places. 143 var places = 0; 145 places = match[1].length; 148 footer_cell.text(pct.toFixed(places) + '%');
|
/external/chromium-trace/catapult/third_party/flot/ |
PLUGINS.md | 18 Now, given that the plugin might run in many different places, it's
|
/external/dng_sdk/source/ |
dng_xmp.h | 195 uint32 places = 6,
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
SerializableTest.java | 115 private static Locale places[] = { field in class:SerializableTest 419 Currency currencies[] = new Currency[places.length]; 421 for (int i = 0; i < places.length; i += 1) { 422 currencies[i] = Currency.getInstance(places[i]); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
SerializableTest.java | 111 private static Locale places[] = { field in class:SerializableTest 415 Currency currencies[] = new Currency[places.length]; 417 for (int i = 0; i < places.length; i += 1) { 418 currencies[i] = Currency.getInstance(places[i]); [all...] |
/external/valgrind/gdbserver_tests/ |
mchelp.stdoutB.exp | 52 shows places pointing inside <len> (default 1) bytes at <addr> 121 shows places pointing inside <len> (default 1) bytes at <addr>
|
/ndk/sources/host-tools/nawk-20071023/ |
FIXES | 98 to catch places where it might overrun. the RE code is still fragile. 208 gawk and mawk. there are still places where it doesn't work 337 /=/ and similar constructs more sensibly in more places. 491 fixed awful bug in new field splitting; didn't get all the places 521 instances of unsigned char have been removed; the handful of places 879 are evaluated before the function is called. Places [all...] |
/external/autotest/client/common_lib/test_utils/ |
unittest.py | 606 def assertAlmostEqual(self, first, second, places=7, msg=None): 608 difference rounded to the given number of decimal places 611 Note that decimal places (from zero) are usually not the same 614 if round(abs(second-first), places) != 0: 615 standardMsg = '%r != %r within %r places' % (first, second, places) 619 def assertNotAlmostEqual(self, first, second, places=7, msg=None): 621 difference rounded to the given number of decimal places 624 Note that decimal places (from zero) are usually not the same 627 if round(abs(second-first), places) == 0 [all...] |
/external/libvorbis/doc/ |
09-helper.tex | 8 The equations below are used in multiple places by the Vorbis codec
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_cmath.py | 117 self.assertAlmostEqual(cmath.pi, pi_expected, places=9, 119 self.assertAlmostEqual(cmath.e, e_expected, places=9,
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_cmath.py | 117 self.assertAlmostEqual(cmath.pi, pi_expected, places=9, 119 self.assertAlmostEqual(cmath.e, e_expected, places=9,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_cmath.py | 117 self.assertAlmostEqual(cmath.pi, pi_expected, places=9, 119 self.assertAlmostEqual(cmath.e, e_expected, places=9,
|