/art/test/417-optimizing-arith-div/ |
info.txt | 1 Tests for division operation.
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/ |
__init__.py | 1 from __future__ import absolute_import, division, unicode_literals
|
/art/test/703-floating-point-div/ |
info.txt | 1 Simple tests to check floating point division.
|
/art/test/701-easy-div-rem/ |
info.txt | 1 Simple tests for checking easy division/reminder for int and longs.
|
/external/mesa3d/src/glsl/glcpp/tests/ |
093-divide-by-zero.c.expected | 1 0:1(13): preprocessor error: division by 0 in preprocessor directive
|
094-divide-by-zero-short-circuit.c.expected | 1 0:12(17): preprocessor error: division by 0 in preprocessor directive
|
/external/clang/test/Analysis/ |
test-include.c | 12 int res = DIVXY(1,0); // expected-warning{{Division by zero}} 13 // expected-warning@-1{{division by zero is undefined}} 18 int res = DIVYX(0,1); // expected-warning{{Division by zero}} 19 // expected-warning@-1{{division by zero is undefined}}
|
test-after-div-zero.c | 7 var = 77 / x; // expected-note {{Division with compared value made here}} 8 if (x == 0) { } // expected-warning {{Value being compared against zero has already been used for division}} 9 } // expected-note@-1 {{Value being compared against zero has already been used for division}} 12 var = 77 / x; // expected-note {{Division with compared value made here}} 13 if (0 == x) { } // expected-warning {{Value being compared against zero has already been used for division}} 14 } // expected-note@-1 {{Value being compared against zero has already been used for division}} 17 var = 77 / x; // expected-note {{Division with compared value made here}} 18 if (x != 0) { } // expected-warning {{Value being compared against zero has already been used for division}} 19 } // expected-note@-1 {{Value being compared against zero has already been used for division}} 22 var = 77 / x; // expected-note {{Division with compared value made here} [all...] |
division-by-zero.c | 2 // Do not crash due to division by zero
|
div-zero.cpp | 11 return (a % (qX-1)); // expected-warning {{Division by zero}}
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/filters/ |
_base.py | 1 from __future__ import absolute_import, division, unicode_literals
|
sanitizer.py | 1 from __future__ import absolute_import, division, unicode_literals
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/trie/ |
__init__.py | 1 from __future__ import absolute_import, division, unicode_literals
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue4264.go | 7 // issue 4264: reject int division by const 0 16 println(x/0) // ERROR "division by zero"
|
bug457.go | 8 // panics on a division by zero.
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue4264.go | 7 // issue 4264: reject int division by const 0 16 println(x/0) // ERROR "division by zero"
|
bug457.go | 8 // panics on a division by zero.
|
/external/clang/test/SemaCXX/ |
warn-div-or-rem-by-zero.cpp | 6 (void)(42 / 0); // expected-warning{{division by zero is undefined}} 7 (void)(42 / false); // expected-warning{{division by zero is undefined}} 8 (void)(42 / !1); // expected-warning{{division by zero is undefined}} 9 (void)(42 / (1 - 1)); // expected-warning{{division by zero is undefined}} 10 (void)(42 / !(1 + 1)); // expected-warning{{division by zero is undefined}} 11 (void)(42 / (int)(0.0)); // expected-warning{{division by zero is undefined}}
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
SQLiteQueryBuilderTest.java | 68 new String[]{"person", "department", "division"}, 70 assertThat(sql, equalTo("SELECT person, department, division FROM table_name WHERE (id = 2 AND name = 'Chuck')")); 78 new String[]{"person", "department", "division"}, 80 assertThat(sql, equalTo("SELECT person, department, division FROM table_name GROUP BY person")); 88 new String[]{"person", "department", "division"}, 90 assertThat(sql, equalTo("SELECT person, department, division FROM table_name WHERE (id = 2 AND name = 'Chuck') GROUP BY person")); 98 new String[]{"person", "department", "division"}, 100 assertThat(sql, equalTo("SELECT person, department, division FROM table_name WHERE (id = 2 AND name = 'Chuck') HAVING SUM(hours) < 20")); 108 new String[]{"person", "department", "division"}, 110 assertThat(sql, equalTo("SELECT person, department, division FROM table_name WHERE (id = 2 AND name = 'Chuck') GROUP BY person HAVING SUM(hours) < 20")) [all...] |
/prebuilts/go/darwin-x86/src/go/types/testdata/ |
const0.src | 43 ui10 = 1 / 0 /* ERROR "division by zero" */ 44 ui11 = ui1 / 0 /* ERROR "division by zero" */ 45 ui12 = ui3 / ui0 /* ERROR "division by zero" */ 46 ui13 = 1 % 0 /* ERROR "division by zero" */ 47 ui14 = ui1 % 0 /* ERROR "division by zero" */ 48 ui15 = ui3 % ui0 /* ERROR "division by zero" */ 68 uf10 = 1 / 0 /* ERROR "division by zero" */ 69 uf11 = uf1 / 0 /* ERROR "division by zero" */ 70 uf12 = uf3 / uf0 /* ERROR "division by zero" */ 89 uc10 = 1 / 0 /* ERROR "division by zero" * [all...] |
/prebuilts/go/linux-x86/src/go/types/testdata/ |
const0.src | 43 ui10 = 1 / 0 /* ERROR "division by zero" */ 44 ui11 = ui1 / 0 /* ERROR "division by zero" */ 45 ui12 = ui3 / ui0 /* ERROR "division by zero" */ 46 ui13 = 1 % 0 /* ERROR "division by zero" */ 47 ui14 = ui1 % 0 /* ERROR "division by zero" */ 48 ui15 = ui3 % ui0 /* ERROR "division by zero" */ 68 uf10 = 1 / 0 /* ERROR "division by zero" */ 69 uf11 = uf1 / 0 /* ERROR "division by zero" */ 70 uf12 = uf3 / uf0 /* ERROR "division by zero" */ 89 uc10 = 1 / 0 /* ERROR "division by zero" * [all...] |
/external/chromium-trace/catapult/third_party/webapp2/tests/resources/jinja2_templates_compiled/ |
tmpl_3a79873b1b49be244fd5444b1258ce348be26de8.py | 1 from __future__ import division
|
/external/clang/test/CodeGen/ |
fold-const-declref.c | 8 __max / 0; // expected-warning{{expression result unused}} expected-warning{{division by zero is undefined}}
|
/external/llvm/test/MC/ELF/ |
div-by-zero.s | 1 // Check that llvm-mc doesn't crash on division by zero.
|
/external/valgrind/massif/tests/ |
zero.c | 1 // Test zero-size allocations -- shouldn't cause division by zero, that kind
|