Searched refs:check (Results 1 - 25 of 1225) 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/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(digit_separators, 0, 0, 201309)
23 #if check(init_captures, 0, 0, 201304)
27 #if check(generic_lambdas, 0, 0, 201304)
31 #if check(sized_deallocation, 0, 0, 201309)
35 #if check(constexpr, 0, 200704, 201304)
39 #if check(decltype_aut
[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/compiler-rt/lib/tsan/
H A Dcheck_analyze.sh11 check() { function
20 check $f rsp 1
21 check $f push 2
22 check $f pop 2
26 check $f rsp 1
27 check $f push 3
28 check $f pop 3
32 check $f rsp 1
33 check $f push 5
34 check
[all...]
H A Dcheck_cmake.sh14 ninja check-sanitizer
15 ninja check-tsan
16 ninja check-asan
17 ninja check-msan
18 ninja check-lsan
/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/v8/test/mjsunit/regress/
H A Dregress-1181.js40 function check(count) { function
52 check(150);
53 check(200);
54 check(350);
/external/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/clang/test/CodeGenCXX/
H A Dempty-nontrivially-copyable.cpp12 bool check();
18 return e.check();
/external/elfutils/src/tests/
H A Dhash.c27 check (const char *name, unsigned long int expected) function
41 status = check ("_DYNAMIC", 165832675);
42 status |= check ("_GLOBAL_OFFSET_TABLE_", 102264335);
/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/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...]
/external/v8/test/mjsunit/
H A Dsmi-mul-const.js30 function check(func, input, expected) { function
43 check(mul_by_neg_1, 2, -2);
44 check(mul_by_0, 2, 0);
45 check(mul_by_1, 2, 2);
46 check(mul_by_2, 2, 4);
60 check(mul_by_neg_127, 2, -254);
61 check(mul_by_neg_128, 2, -256);
62 check(mul_by_neg_129, 2, -258);
63 check(mul_by_1023, 2, 2046);
64 check(mul_by_102
[all...]
H A Darray-push-unshift-read-only-length.js11 function check(f) {
25 check(push);
26 check(push);
27 check(push);
29 check(push);
35 check(unshift);
36 check(unshift);
37 check(unshift);
39 check(unshift);
/external/clang/test/Parser/
H A Dcxx-ambig-paren-expr.cpp44 bool check();
48 if (result((cls::type) i).check())
51 if (result((ns::type) i).check())
54 if (result((::type) i).check())
57 if (result((cls::rec) i).check())
60 if (result((ns::rec) i).check())
63 if (result((::rec) i).check())
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckerDocumentation.cpp37 class CheckerDocumentation : public Checker< check::PreStmt<ReturnStmt>,
38 check::PostStmt<DeclStmt>,
39 check::PreObjCMessage,
40 check::PostObjCMessage,
41 check::PreCall,
42 check::PostCall,
43 check::BranchCondition,
44 check::Location,
45 check::Bind,
46 check
[all...]
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.general/
H A Dp8.cpp5 template<typename T> struct check;
6 template<size_t N> struct check<const char[N]> {}; struct
16 check<decltype(__func__)>();
/external/deqp/scripts/opengl/
H A Dgen_func_init.py32 def check(api, version): function in function:genFuncInit
38 check = check,
/external/icu/icu4c/source/test/threadtest/
H A Dthreadtest.h32 // check() will be called periodically in a single threaded
41 virtual void check() = 0;
/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...]

Completed in 1420 milliseconds

1234567891011>>