Searched refs:check (Results 51 - 75 of 1870) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/
H A Dtemporaries.cpp119 extern bool check(const Dtor &);
124 if (coin() && (coin() || coin() || check(Dtor()))) {
149 extern bool check(const NoReturnDtor &);
154 if (i == 5 && (i == 4 || check(NoReturnDtor()) || i == 5)) {
160 (i == 5 && (i == 4 || check(NoReturnDtor()) || i == 5)) ? 1 : 0;
167 (i == 5 && (i == 4 || check(NoReturnDtor()) || i == 5)) ? 1 : 0;
177 if (i == 5 && (i == 4 || i == 5 || check(NoReturnDtor())))
180 if (i == 5 && (i == 4 || i == 5 || check(NoReturnDtor())))
188 compute(i == 5 && (i == 4 || check(NoReturnDtor()))))) ||
195 compute(i == 5 && (i == 4 || check(NoReturnDto
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_locale.py369 def check(self, localename, expected): member in class:NormalizeTest
375 self.check(localename, alias)
378 self.check('', '')
381 self.check('c', 'C')
382 self.check('posix', 'C')
385 self.check('en', 'en_US.ISO8859-1')
386 self.check('EN', 'en_US.ISO8859-1')
387 self.check('en.iso88591', 'en_US.ISO8859-1')
388 self.check('en_US', 'en_US.ISO8859-1')
389 self.check('en_u
[all...]
H A Dtest_tcl.py255 def check(expr, expected): function in function:TclTest.test_exprstring
264 check('', '0')
265 check('8.2 + 6', '14.2')
266 check('3.1 + $a', '6.1')
267 check('2 + "$a.$b"', '5.6')
268 check('4*[llength "6 2"]', '8')
269 check('{word one} < "word $a"', '0')
270 check('4*2 < 7', '0')
271 check('hypot($a, 4)', '5.0')
272 check('
290 def check(expr, expected): function in function:TclTest.test_exprdouble
322 def check(expr, expected): function in function:TclTest.test_exprlong
354 def check(expr, expected): function in function:TclTest.test_exprboolean
394 def check(expr, expected): function in function:TclTest.test_booleans
474 def check(value, expected=None, *, eq=self.assertEqual): function in function:TclTest.test_user_command
[all...]
/external/annotation-tools/
H A D.travis-build.sh12 ant check-style
15 # ant check-format
/external/compiler-rt/test/BlocksRuntime/
H A Dnullblockisa.c22 void check(void (^b)(void)) { function
39 check(^{ printf("%d\n", ++i); });
/external/icu/icu4c/source/samples/datefmt/
H A Dutil.h14 void check(UErrorCode& status, const char* msg);
/external/icu/icu4c/source/samples/msgfmt/
H A Dutil.h14 void check(UErrorCode& status, const char* msg);
/external/icu/icu4c/source/samples/translit/
H A Dutil.h14 void check(UErrorCode& status, const char* msg);
/external/ltp/testcases/kernel/fs/fs_bind/cloneNS/
H A Dchild0531 check "$disk2" parent/child1/a parent/child2/child1/a
32 check "$disk3" parent/child1/b parent/child2/child1/b
35 check parent/child2/child1/c parent/child1/c
38 check parent/child2/child1/b parent/child1/b
H A Dchild0731 check parent2 parent2/a parent2/a/a
32 check parent2/b parent2/a/b parent2/a/a/b
35 check parent2/c parent2/a/c parent2/a/a/c
39 check parent2/c parent2/a/c parent2/a/a/c
H A Dparent0233 check dir1/a dir2/a
36 check -n dir1/b dir2/b
41 check "$disk2" dir1/a dir2/a
42 check "$disk4" dir1/c dir2/c
/external/python/cpython3/Lib/lib2to3/tests/
H A Dtest_fixers.py35 def check(self, before, after, ignore_warnings=False): member in class:FixerTestCase
79 self.check(b, a)
87 self.check(b, a)
95 self.check(b, a)
103 self.check(b, a)
108 self.check(b, a)
113 self.check(b, a)
118 self.check(b, a)
123 self.check(b, a)
128 self.check(
3016 def check(self, b, a): member in class:Test_map
3128 def check(self, b, a): member in class:Test_zip
[all...]
/external/icu/icu4c/source/tools/
H A DMakefile.in30 check check-local check-recursive build-local check-exhaustive
41 check: all check-recursive
43 check-exhaustive: check
46 all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
82 check
[all...]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
H A DAssertStmt.java42 * <br/>In <code>assert dead : "Wasn't expecting to be dead here";</code> the check is "dead" and the message is the string.
47 private Expression check; field in class:AssertStmt
56 public AssertStmt(final Expression check) { argument
57 this(null, check, null);
61 public AssertStmt(final Expression check, final Expression message) { argument
62 this(null, check, message);
69 public AssertStmt(TokenRange tokenRange, Expression check, Expression message) { argument
71 setCheck(check);
90 return check;
99 public AssertStmt setCheck(final Expression check) { argument
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_sha.py17 def check(self, data, digest): member in class:SHATestCase
36 self.check("abc",
40 self.check("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
44 self.check("a" * 1000000,
48 self.check(chr(0xAA) * 80,
H A Dtest_tcl.py280 def check(expr, expected): function in function:TclTest.test_exprstring
288 check('', '0')
289 check('8.2 + 6', '14.2')
290 check('3.1 + $a', '6.1')
291 check('2 + "$a.$b"', '5.6')
292 check('4*[llength "6 2"]', '8')
293 check('{word one} < "word $a"', '0')
294 check('4*2 < 7', '0')
295 check('hypot($a, 4)', '5.0')
296 check('
314 def check(expr, expected): function in function:TclTest.test_exprdouble
345 def check(expr, expected): function in function:TclTest.test_exprlong
376 def check(expr, expected): function in function:TclTest.test_exprboolean
415 def check(expr, expected): function in function:TclTest.test_booleans
494 def check(value, expected=None, eq=self.assertEqual): function in function:TclTest.test_user_command
[all...]
/external/tensorflow/tensorflow/python/kernel_tests/
H A Dscalar_test.py37 def check(self, op, args, error, correct=None): member in class:ScalarTest
70 self.check(array_ops.concat, (([2], [3], [7]), [0]),
73 self.check(array_ops.concat, (data, 0),
76 self.check(array_ops.concat, (data, 0),
80 self.check(array_ops.fill, (2, 3), 'dims must be a vector', [3, 3])
81 self.check(array_ops.fill, ([2], [3]), 'value must be a scalar', [3, 3])
84 self.check(array_ops.pad, (7, [[1, 2]]),
89 self.check(random_ops.random_uniform, (3,), 'shape must be a vector')
92 self.check(array_ops.reshape, (7, 1), 'sizes input must be 1-D', [7])
95 self.check(gen_io_op
[all...]
/external/python/cpython2/Lib/lib2to3/tests/
H A Dtest_fixers.py36 def check(self, before, after, ignore_warnings=False): member in class:FixerTestCase
80 self.check(b, a)
88 self.check(b, a)
96 self.check(b, a)
104 self.check(b, a)
109 self.check(b, a)
114 self.check(b, a)
119 self.check(b, a)
124 self.check(b, a)
129 self.check(
2958 def check(self, b, a): member in class:Test_map
3070 def check(self, b, a): member in class:Test_zip
[all...]
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/
H A Dtypes.pass.cpp35 template <typename C> static yes check( typename C::argument_type * );
36 template <typename C> static no check(...);
38 enum { value = sizeof(check<T>(0)) == sizeof(yes) };
47 template <typename C> static yes check( typename C::first_argument_type * );
48 template <typename C> static no check(...);
50 enum { value = sizeof(check<T>(0)) == sizeof(yes) };
60 template <typename C> static yes check( typename C::second_argument_type *);
61 template <typename C> static no check(...);
63 enum { value = sizeof(check<T>(0)) == sizeof(yes) };
/external/jsmn/
H A Djsmn_test.c15 #define check(cond) do { if (!(cond)) fail(); } while (0) macro
53 check(r >= 0);
54 check(t[0].type == JSMN_OBJECT);
55 check(t[0].start == 0 && t[0].end == 2);
60 check(r >= 0);
61 check(t[0].type == JSMN_ARRAY);
62 check(t[0].start == 0 && t[0].end == 2);
67 check(r >= 0);
68 check(t[0].type == JSMN_OBJECT && t[0].start == 0 && t[0].end == 8);
69 check(
[all...]
/external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.cons/
H A Ddefault.pass.cpp24 void check() function in struct:testbuf
47 buf.check();
51 buf.check();
/external/llvm/test/MC/ARM/
H A Dldr-pseudo-unpredictable.s1 @RUN: llvm-mc -triple armv5-unknown-linux-gnueabi %s | FileCheck --check-prefix=CHECK-ARM %s
2 @RUN: not llvm-mc -triple thumbv7-unknown-linux-gnueabi %s 2>&1 | FileCheck --check-prefix=CHECK-SP %s
3 @RUN: not llvm-mc -triple thumbv5-unknown-linux-gnueabi %s 2>&1 | FileCheck --check-prefix=CHECK-NONE %s
4 @RUN: llvm-mc -triple armv5-base-apple-darwin %s | FileCheck --check-prefix=CHECK-DARWIN-ARM %s
5 @RUN: not llvm-mc -triple thumbv7-base-apple-darwin %s 2>&1 | FileCheck --check-prefix=CHECK-DARWIN-SP %s
6 @RUN: not llvm-mc -triple thumbv5-base.apple.darwin %s 2>&1 | FileCheck --check-prefix=CHECK-NONE %s
/external/syslinux/com32/lib/libpng/
H A Dpngrio.c53 png_size_t check; local
61 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
62 check = 0;
64 check = (png_size_t)fread(data, (png_size_t)1, length,
68 if (check != length)
83 int check; local
95 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check,
97 check = 0;
99 check = fread(n_data, 1, length, io_ptr);
106 check
[all...]
/external/icu/icu4c/source/samples/
H A DMakefile.in32 check check-recursive check-local check-exhaustive
46 check-samples: check-samples-recursive
48 # Note (srl 4/15/2002) do NOT recursively check samples for 2.1, look into testing them in the future.
49 #check: all check-recursive check
[all...]
/external/clang/test/CodeGen/
H A D2007-05-29-UnionCopy.c16 void check(union U *u, union U *v) { function

Completed in 978 milliseconds

1234567891011>>