Searched refs:check (Results 1 - 25 of 4788) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dbuiltin-unary-fp.c2 void check(int);
4 check(__builtin_isfinite(1.0f));
5 check(__builtin_isinf(1.0));
6 check(__builtin_isinf_sign(1.0L));
7 check(__builtin_isnan(1.0f));
8 check(__builtin_isnormal(1.0f));
9 check(__builtin_isfinite(1)); // expected-error{{requires argument of floating point type}}
10 check(__builtin_isinf()); // expected-error{{too few arguments}}
11 check(__builtin_isnan(1,2)); // expected-error{{too many arguments}}
12 check(__builtin_fpclassif
[all...]
H A Dpragma-pack-5.c14 extern int check[sizeof(struct s0) == 6 ? 1 : -1];
21 extern int check[sizeof(struct s1) == 5 ? 1 : -1];
29 extern int check[sizeof(struct s2) == 6 ? 1 : -1];
37 extern int check[sizeof(struct s3) == 8 ? 1 : -1];
38 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
45 extern int check[sizeof(struct s4) == 4 ? 1 : -1];
46 extern int check[offsetof(struct s4, f3) == 2 ? 1 : -1];
H A Darm-layout.c5 #define check(name, cond) int _##name##_check[(cond) ? 1 : -1] macro
9 check(s0_size, sizeof(struct s0) == 16);
11 check(s0_size, sizeof(struct s0) == 12);
16 check(s1_size, sizeof(struct s1) == 16);
18 check(s1_size, sizeof(struct s1) == 12);
27 check(s2_size, sizeof(struct s2) == 8);
28 check(s2_offset_0, __builtin_offsetof(struct s2, field0) == 0);
29 check(s2_offset_1, __builtin_offsetof(struct s2, field2) == 7);
31 check(s2_size, sizeof(struct s2) == 6);
32 check(s2_offset_
[all...]
H A Dpragma-pack-6.c15 extern int check[__alignof(struct X) == 2 ? 1 : -1];
16 extern int check[__alignof(struct Y) == 4 ? 1 : -1];
/external/clang/test/SemaCXX/
H A Dgoto2.cpp12 bool check = true; local
14 if (check)
18 if (check)
22 if (check)
28 check = !check;
30 while (check);
36 if (check)
/external/oprofile/libutil++/tests/
H A Dpath_filter_tests.cpp19 #define check(filter, str, result) \ macro
29 check(f1, "foo/barfoobar", true);
30 check(f1, "foo/bar", true);
31 check(f1, "/foo/foobar/foo", false);
32 check(f1, "fooobar1", false);
33 check(f1, "foo1", false);
34 check(f1, "foobar", false);
35 check(f1, "bar1", false);
38 check(f2, "foo", true);
39 check(f
[all...]
H A Dcomma_list_tests.cpp19 #define check(clist, val, result) \ macro
30 check(c1, 1, true);
34 check(c1, 2, true);
35 check(c1, 3, false);
39 check(c1, 2, false);
40 check(c1, 3, true);
44 check(c1, 2, true);
45 check(c1, 3, true);
46 check(c1, 4, false);
50 check(c
[all...]
H A Dstring_filter_tests.cpp19 #define check(filter, str, result) \ macro
29 check(f1, "", true);
30 check(f1, "ok", true);
33 check(f2, "ok", true);
34 check(f2, "no", false);
37 check(f3, "ok", true);
38 check(f3, "no", false);
41 check(f4, "ok", true);
42 check(f4, "ok2", true);
43 check(f
[all...]
H A Dglob_filter_tests.cpp19 #define check(filter, str, result) \ macro
29 check(f1, "foo/barfoobar", true);
30 check(f1, "foo/bar", true);
31 check(f1, "/foo/foobar/foo", false);
32 check(f1, "fooobar1", false);
33 check(f1, "foo1", false);
34 check(f1, "foobar", false);
35 check(f1, "bar1", false);
38 check(f2, "foo", true);
39 check(f
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DChecker.cpp40 void Checker<check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
41 check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
42 check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
43 check
[all...]
/external/libunwind/tests/
H A Drun-check-namespace2 chmod +x ./check-namespace.sh
3 ./check-namespace.sh $*
/external/clang/test/Driver/
H A Ddebug-options.c5 | FileCheck -check-prefix=G %s
7 | FileCheck -check-prefix=G %s
9 | FileCheck -check-prefix=G %s
11 | FileCheck -check-prefix=G %s
13 | FileCheck -check-prefix=G %s
15 | FileCheck -check-prefix=G %s
18 | FileCheck -check-prefix=G_DARWIN %s
20 | FileCheck -check-prefix=G_DARWIN %s
22 | FileCheck -check-prefix=G_DARWIN %s
24 | FileCheck -check
[all...]
/external/clang/test/Lexer/
H A Dcxx-features.cpp8 #define check(macro, cxx98, cxx11, cxx1y) cxx98 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx98 macro
10 #define check(macro, cxx98, cxx11, cxx1y) cxx11 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx11 macro
12 #define check(macro, cxx98, cxx11, cxx1y) cxx1y == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx1y macro
15 #if check(binary_literals, 0, 0, 201304)
19 #if check(init_captures, 0, 0, 201304)
23 #if check(generic_lambdas, 0, 0, 201304)
27 #if check(constexpr, 0, 200704, 201304)
31 #if check(decltype_auto, 0, 0, 201304)
35 #if check(return_type_deduction, 0, 0, 201304)
39 #if check(runtime_array
[all...]
/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp12.cpp3 template<typename T, T... cs> struct check; // expected-note {{template is declared here}} expected-note {{template is declared here}}
5 struct check<char, 34, -47, -126, -48, -75, -47, -127, -47, -126, 32, -16, -112, -128, -128>{}; struct
7 struct check<char16_t, 34, 1090, 1077, 1089, 1090, 32, 55296, 56320>{}; struct
9 struct check<char32_t, 34, 1090, 1077, 1089, 1090, 32, 65536>{}; struct
11 check<T, str...> chars; // expected-error {{implicit instantiation of undefined template 'check<char, 't', 'e', 's', 't'>'}} expected-error {{implicit instantiation of undefined template 'check<char32_t, 34, 1090, 1077, 1089, 1090, 95, 65536>'}}
/external/chromium_org/tools/gyp/test/mac/xcode-gcc/
H A Daliasing.cc3 void check(int* h, long* k) { function
11 check((int*)&k, &k);
/external/compiler-rt/lib/tsan/
H A Dcheck_analyze.sh22 check() { function
31 check $f rsp 3
32 check $f push 1
33 check $f pop 5
37 check $f rsp 3
38 check $f push 1
39 check $f pop 4
43 check $f rsp 0
44 check $f push 0
45 check
[all...]
/external/chromium_org/media/base/
H A Dgmock_callback_support_unittest.cc24 MockFunction<void(const TestCallback&)> check; local
25 EXPECT_CALL(check, Call(IsNullCallback()));
26 check.Call(TestCallback());
30 MockFunction<void(const TestCallback&)> check; local
31 EXPECT_CALL(check, Call(IsNotNullCallback()));
32 check.Call(base::Bind(&SetBool));
36 MockFunction<void(const base::Closure&)> check; local
38 EXPECT_CALL(check, Call(IsNotNullCallback()))
40 check.Call(base::Bind(&SetBool, true, &dst));
45 MockFunction<void(const TestCallback&)> check; local
54 MockFunction<void(int, const TestCallback&)> check; local
63 MockFunction<void(const TestCallback&)> check; local
74 MockFunction<void(const TestCallback&)> check; local
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1181.js40 function check(count) { function
52 check(150);
53 check(200);
54 check(350);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dprint_layout_test_times_unittest.py37 def check(self, args, expected_output, files=None): member in class:PrintLayoutTestTimesTest
60 self.check(['--fastest', '10'],
67 self.check(['-f', '1', '--fastest', '10'],
74 self.check(['-b', '1', '--fastest', '10'],
81 self.check([],
93 self.check(['-f', '0'], "300\n")
96 self.check(['-f', '1'],
101 self.check(['-b', '1'],
108 self.check(['/tmp/times_ms.json'], "foo/bar.html 1\n",
/external/chromium_org/v8/test/cctest/
H A Dtest-ostreams.cc54 static void check(const char* expected, T value) { function
62 check<bool>("0 0", false);
63 check<bool>("1 1", true);
65 check<int16_t>("-12345 cfc7", -12345);
66 check<int16_t>("-32768 8000", std::numeric_limits<int16_t>::min());
67 check<int16_t>("32767 7fff", std::numeric_limits<int16_t>::max());
69 check<uint16_t>("34567 8707", 34567);
70 check<uint16_t>("0 0", std::numeric_limits<uint16_t>::min());
71 check<uint16_t>("65535 ffff", std::numeric_limits<uint16_t>::max());
73 check<int32_
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen_auto_enrollment_check.css6 #auto-enrollment-check {
11 #auto-enrollment-check #auto-enrollment-check-progress {
/external/clang/test/CodeGenCXX/
H A Dempty-nontrivially-copyable.cpp12 bool check();
18 return e.check();
/external/stlport/test/unit/
H A Dtest_errno.cpp8 #include <errno.h> // not typo, check errno def/undef/redef
20 CPPUNIT_TEST(check);
24 void check();
29 void ErrnoTest::check() function in class:ErrnoTest
/external/bison/tests/
H A DMakefile.am70 check-local: atconfig atlocal $(TESTSUITE)
80 .PHONY: maintainer-check-g++
81 maintainer-check-g++: atconfig atlocal $(TESTSUITE)
84 .PHONY: maintainer-check-posix
85 maintainer-check-posix: atconfig atlocal $(TESTSUITE)
88 .PHONY: maintainer-check-valgrind
89 maintainer-check-valgrind: atconfig atlocal $(TESTSUITE)
93 VALGRIND_OPTS='--leak-check=full --show-reachable=yes'
95 .PHONY: maintainer-check
96 maintainer-check
[all...]
/external/valgrind/main/memcheck/tests/
H A Dstr_tester.c49 check (int thing, int number) function
62 check(a != NULL && b != NULL && STREQ (a, b), number);
73 check (strcmp ("", "") == 0, 1); /* Trivial case. */
74 check (strcmp ("a", "a") == 0, 2); /* Identity. */
75 check (strcmp ("abc", "abc") == 0, 3); /* Multicharacter. */
76 check (strcmp ("abc", "abcd") < 0, 4); /* Length mismatches. */
77 check (strcmp ("abcd", "abc") > 0, 5);
78 check (strcmp ("abcd", "abce") < 0, 6); /* Honest miscompares. */
79 check (strcmp ("abce", "abcd") > 0, 7);
80 check (strcm
[all...]

Completed in 2329 milliseconds

1234567891011>>