Searched refs:check (Results 1 - 25 of 1680) 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/testng/gradle/
H A DbuildWithTravis.sh1 ../gradlew check
/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/kmod/testsuite/
H A DMakefile8 $(MAKE) -C .. check
9 check:
10 $(MAKE) -C .. check
15 .PHONY: all clean check
/external/clang/test/Lexer/
H A Dcxx-features.cpp13 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx98 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx98 macro
15 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx11 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx11 macro
17 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx14 == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx14 macro
19 #define check(macro, cxx98, cxx11, cxx14, cxx1z) cxx1z == 0 ? defined(__cpp_##macro) : __cpp_##macro != cxx1z macro
22 #if check(binary_literals, 0, 0, 201304, 201304)
26 #if check(digit_separators, 0, 0, 201309, 201309)
30 #if check(init_captures, 0, 0, 201304, 201304)
34 #if check(generic_lambdas, 0, 0, 201304, 201304)
38 #if check(sized_deallocation, 0, 0, 201309, 201309)
42 #if check(constexp
[all...]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
H A Dpackage-info.java14 * Rules check implementation.
16 package org.jacoco.report.check
/external/libunwind/tests/
H A Drun-check-namespace2 chmod +x ./check-namespace.sh
3 ./check-namespace.sh $*
/external/python/cpython2/Lib/test/
H A Dtest_fnmatch.py26 check = self.check_match
27 check('abc', 'abc')
28 check('abc', '?*?')
29 check('abc', '???*')
30 check('abc', '*???')
31 check('abc', '???')
32 check('abc', '*')
33 check('abc', 'ab[cd]')
34 check('abc', 'ab[!de]')
35 check('ab
[all...]
/external/compiler-rt/lib/tsan/
H A Dcheck_analyze.sh21 check() { function
30 check $f rsp 1
31 check $f push 2
32 check $f pop 2
36 check $f rsp 1
37 check $f push 3
38 check $f pop 3
42 check $f rsp 1
43 check $f push 5
44 check
[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/linux-kselftest/tools/testing/selftests/powerpc/switch_endian/
H A DMakefile5 EXTRA_CLEAN = $(OUTPUT)/*.o $(OUTPUT)/check-reversed.S
9 $(OUTPUT)/switch_endian_test: $(OUTPUT)/check-reversed.S
11 $(OUTPUT)/check-reversed.o: $(OUTPUT)/check.o
14 $(OUTPUT)/check-reversed.S: $(OUTPUT)/check-reversed.o
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DPackageCompactConstructorTest.java23 assertEquals(Table.class, check("Table"));
24 assertEquals(Table.class, check("org.yaml.snakeyaml.extensions.compactnotation.Table"));
25 assertEquals(String.class, check("java.lang.String"));
30 check("foo.Bar");
39 check("FooBar");
46 private Class<?> check(String name) throws ClassNotFoundException { method in class:PackageCompactConstructorTest
/external/clang/test/CodeGenCXX/
H A Dempty-nontrivially-copyable.cpp12 bool check();
18 return e.check();
/external/ltp/testcases/kernel/fs/fs_bind/cloneNS/
H A Dchild0330 check "$disk1" dir1
H A Dparent0330 check "$disk1" dir1
/external/trappy/hooks/
H A Dpre-commit26 git diff-index --check --cached HEAD --
/external/valgrind/helgrind/tests/
H A Dfilter_stderr_solaris9 my $check = join "|", ('pthread_mutex_init', 'pthread_cond_wait', 'pthread_cond_timedwait');
10 s/^\s*by 0x........: (?:$check) \(in \/...libc...\)\s*//;
30 my $check = join "|", keys %regex;
32 s/($check)(.*hg_intercepts.c)/$regex{$1}$2/g;
/external/libdrm/
H A Dxf86drmRandom.h33 unsigned long check; member in struct:RandomState
/external/elfutils/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/r8/src/test/examplesAndroidO/paramnames/
H A DParameterNames.java18 public static void check(String expected, String checked) { method in class:ParameterNames
24 public static void check(int expected, int checked) { method in class:ParameterNames
34 check(2, parameters.length);
35 check("a", parameters[0].getName());
36 check("b", parameters[1].getName());
37 check(MODIFIER_NONE, parameters[0].getModifiers());
38 check(MODIFIER_FINAL, parameters[1].getModifiers());
45 check(2, parameters.length);
46 check("a", parameters[0].getName());
47 check("
[all...]
/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/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::ObjCMessageNil,
42 check::PreCall,
43 check::PostCall,
44 check::BranchCondition,
45 check::Location,
46 check
[all...]

Completed in 788 milliseconds

1234567891011>>