HomeSort by relevance Sort by last modified time
    Searched refs:check (Results 1 - 25 of 3048) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
builtin-unary-fp.c 2 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_fpclassify(0, 0, 0, 0, 0, 1.0))
    [all...]
pragma-pack-5.c 4 // Check #pragma pack handling with bitfields.
14 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];
arm-layout.c 5 #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_0, __builtin_offsetof(struct s2, field0) == 0)
    [all...]
pragma-pack-6.c 15 extern int check[__alignof(struct X) == 2 ? 1 : -1];
16 extern int check[__alignof(struct Y) == 4 ? 1 : -1];
  /external/testng/gradle/
buildWithTravis.sh 1 ../gradlew check
  /art/test/656-annotation-lookup-generic-jni/
check 21 ./default-check "$1" "$2.tmp"
  /external/clang/test/SemaCXX/
goto2.cpp 12 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/
Makefile 8 $(MAKE) -C .. check
9 check:
10 $(MAKE) -C .. check
15 .PHONY: all clean check
  /external/clang/test/Lexer/
cxx-features.cpp 13 #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(constexpr, 0, 200704, 201304, 201304
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
package-info.java 14 * Rules check implementation.
16 package org.jacoco.report.check
  /external/libcxx/test/std/utilities/function.objects/refwrap/
unwrap_ref_decay.pass.cpp 25 void check() { function
33 check<T, T>();
34 check<T&, T>();
35 check<T const, T>();
36 check<T const&, T>();
37 check<T*, T*>();
38 check<T const*, T const*>();
39 check<T[3], T*>();
40 check<T const [3], T const*>();
41 check<T (), T (*)()>()
    [all...]
  /external/libunwind/tests/
run-check-namespace 2 chmod +x ./check-namespace.sh
3 ./check-namespace.sh $*
  /art/test/707-checker-invalid-profile/
check 21 ./default-check "$@"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fnmatch.py 26 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('abc', 'ab[de]', 0)
    [all...]
  /external/compiler-rt/lib/tsan/
check_analyze.sh 21 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 $f pop
    [all...]
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p12.cpp 3 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>'}}
  /art/test/044-proxy/src/
ReturnsAndArgPassing.java 22 static void check(boolean x) { method in class:ReturnsAndArgPassing
24 throw new AssertionError(testName + " Check failed");
57 check(proxy instanceof Proxy);
58 check(method.getDeclaringClass() == MyInterface.class);
60 // Check for moving GC bugs in proxy stubs.
63 check(args == null); method
66 check(args == null); method
78 check(args.length == 6); method
86 check(name.endsWith("Bar"));
103 check(fooInvocations == 0) method
105 check(fooInvocations == 1); method
107 check(barInvocations == 0); method
109 check(barInvocations == 1); method
111 check(fooInvocations == 1); method
114 check(fooInvocations == 2); method
116 check(barInvocations == 1); method
118 check(barInvocations == 2); method
120 check(fooInvocations == 2); method
123 check(fooInvocations == 3); method
125 check(barInvocations == 2); method
127 check(barInvocations == 3); method
129 check(fooInvocations == 3); method
132 check(fooInvocations == 4); method
134 check(barInvocations == 3); method
136 check(barInvocations == 4); method
138 check(fooInvocations == 4); method
141 check(fooInvocations == 5); method
143 check(barInvocations == 4); method
145 check(barInvocations == 5); method
147 check(fooInvocations == 5); method
150 check(fooInvocations == 6); method
152 check(barInvocations == 5); method
154 check(barInvocations == 6); method
156 check(fooInvocations == 6); method
159 check(fooInvocations == 7); method
161 check(barInvocations == 6); method
163 check(barInvocations == 7); method
165 check(fooInvocations == 7); method
168 check(fooInvocations == 8); method
170 check(barInvocations == 7); method
172 check(barInvocations == 8); method
174 check(fooInvocations == 8); method
177 check(fooInvocations == 9); method
179 check(barInvocations == 8); method
181 check(barInvocations == 9); method
186 check(fooInvocations == 9); method
192 check(fooInvocations == 10); method
194 check(barInvocations == 9); method
200 check(barInvocations == 10); method
202 check(fooInvocations == 10); method
208 check(fooInvocations == 11); method
210 check(barInvocations == 10); method
216 check(barInvocations == 11); method
218 check(fooInvocations == 11); method
224 check(fooInvocations == 12); method
226 check(barInvocations == 11); method
232 check(barInvocations == 12); method
234 check(fooInvocations == 12); method
240 check(fooInvocations == 13); method
242 check(barInvocations == 12); method
248 check(barInvocations == 13); method
250 check(fooInvocations == 13); method
256 check(fooInvocations == 14); method
258 check(barInvocations == 13); method
264 check(barInvocations == 14); method
266 check(fooInvocations == 14); method
272 check(fooInvocations == 15); method
274 check(barInvocations == 14); method
280 check(barInvocations == 15); method
282 check(fooInvocations == 15); method
288 check(fooInvocations == 16); method
290 check(barInvocations == 15); method
296 check(barInvocations == 16); method
298 check(fooInvocations == 16); method
304 check(fooInvocations == 17); method
306 check(barInvocations == 16); method
312 check(barInvocations == 17); method
317 check(fooInvocations == 17); method
324 check(fooInvocations == 18); method
326 check(barInvocations == 17); method
332 check(barInvocations == 18); method
334 check(fooInvocations == 18); method
341 check(fooInvocations == 19); method
343 check(barInvocations == 18); method
349 check(barInvocations == 19); method
351 check(fooInvocations == 19); method
358 check(fooInvocations == 20); method
360 check(barInvocations == 19); method
366 check(barInvocations == 20); method
368 check(fooInvocations == 20); method
375 check(fooInvocations == 21); method
377 check(barInvocations == 20); method
383 check(barInvocations == 21); method
385 check(fooInvocations == 21); method
392 check(fooInvocations == 22); method
394 check(barInvocations == 21); method
400 check(barInvocations == 22); method
402 check(fooInvocations == 22); method
409 check(fooInvocations == 23); method
411 check(barInvocations == 22); method
417 check(barInvocations == 23); method
419 check(fooInvocations == 23); method
426 check(fooInvocations == 24); method
428 check(barInvocations == 23); method
434 check(barInvocations == 24); method
447 check((Integer)proxyMyInterface.selectArg(0, Integer.MAX_VALUE, Long.MAX_VALUE, method
449 check((Integer)proxyMyInterface.selectArg(1, Integer.MAX_VALUE, Long.MAX_VALUE, method
451 check((Long)proxyMyInterface.selectArg(2, Integer.MAX_VALUE, Long.MAX_VALUE, method
453 check((Float)proxyMyInterface.selectArg(3, Integer.MAX_VALUE, Long.MAX_VALUE, method
455 check((Double)proxyMyInterface.selectArg(4, Integer.MAX_VALUE, Long.MAX_VALUE, method
    [all...]
  /external/python/cpython3/Lib/test/
test_fnmatch.py 22 check = self.check_match
23 check('abc', 'abc')
24 check('abc', '?*?')
25 check('abc', '???*')
26 check('abc', '*???')
27 check('abc', '???')
28 check('abc', '*')
29 check('abc', 'ab[cd]')
30 check('abc', 'ab[!de]')
31 check('abc', 'ab[de]', False
    [all...]
test_html.py 21 def check(text, expected): function in function:HtmlTests.test_unescape
29 # check text with no character references
30 check('no character references', 'no character references')
31 # check & followed by invalid chars
32 check('&\n&\t& &&', '&\n&\t& &&')
33 # check & followed by numbers and letters
34 check('&0 &9 &a &0; &9; &a;', '&0 &9 &a &0; &9; &a;')
35 # check incomplete entities at the end of the string
37 check(x, x)
38 check(x+';', x+';'
    [all...]
  /art/test/1953-pop-frame/
check 20 ./default-check "$@" || \
21 (patch -p0 expected.txt < class-loading-expected.patch >/dev/null && ./default-check "$@")
  /art/test/1954-pop-frame-jit/
check 20 ./default-check "$@" || \
21 (patch -p0 expected.txt < jvm-expected.patch >/dev/null && ./default-check "$@")
  /art/test/1955-pop-frame-jit-called/
check 20 ./default-check "$@" || \
21 (patch -p0 expected.txt < jvm-expected.patch >/dev/null && ./default-check "$@")
  /art/test/1956-pop-frame-jit-calling/
check 20 ./default-check "$@" || \
21 (patch -p0 expected.txt < jvm-expected.patch >/dev/null && ./default-check "$@")
  /art/test/530-instanceof-checkcast/src/
Main.java 34 // We also check for a method with try/catch because the compiler then makes a slow
42 check(true, exactCheck instanceof ExactCheck); method
43 check(false, regularObject instanceof ExactCheck); method
45 check(true, abstractCheckImpl instanceof AbstractCheck); method
46 check(false, regularObject instanceof AbstractCheck); method
48 check(true, interfaceCheckImpl instanceof InterfaceCheck); method
49 check(false, regularObject instanceof InterfaceCheck); method
51 check(true, normalCheck instanceof NormalCheck); method
52 check(true, exactCheck instanceof NormalCheck); method
53 check(false, regularObject instanceof NormalCheck) method
55 check(false, regularObject instanceof int[]); method
56 check(false, objectArray instanceof int[]); method
57 check(true, intArray instanceof int[]); method
58 check(false, doubleArray instanceof int[]); method
60 check(false, regularObject instanceof ExactCheck[]); method
61 check(false, objectArray instanceof ExactCheck[]); method
62 check(false, doubleArray instanceof ExactCheck[]); method
63 check(true, exactArray instanceof ExactCheck[]); method
64 check(false, normalArray instanceof ExactCheck[]); method
66 check(false, regularObject instanceof NormalCheck[]); method
67 check(false, objectArray instanceof NormalCheck[]); method
68 check(false, doubleArray instanceof NormalCheck[]); method
69 check(true, exactArray instanceof NormalCheck[]); method
70 check(true, normalArray instanceof NormalCheck[]); method
72 check(false, regularObject instanceof Object[]); method
73 check(true, objectArray instanceof Object[]); method
74 check(false, doubleArray instanceof Object[]); method
75 check(true, exactArray instanceof Object[]); method
76 check(true, normalArray instanceof Object[]); method
81 check(true, exactCheck instanceof ExactCheck); method
82 check(false, regularObject instanceof ExactCheck); method
84 check(true, abstractCheckImpl instanceof AbstractCheck); method
85 check(false, regularObject instanceof AbstractCheck); method
87 check(true, interfaceCheckImpl instanceof InterfaceCheck); method
88 check(false, regularObject instanceof InterfaceCheck); method
90 check(true, normalCheck instanceof NormalCheck); method
91 check(true, exactCheck instanceof NormalCheck); method
92 check(false, regularObject instanceof NormalCheck); method
94 check(false, regularObject instanceof int[]); method
95 check(false, objectArray instanceof int[]); method
96 check(true, intArray instanceof int[]); method
97 check(false, doubleArray instanceof int[]); method
99 check(false, regularObject instanceof ExactCheck[]); method
100 check(false, objectArray instanceof ExactCheck[]); method
101 check(false, doubleArray instanceof ExactCheck[]); method
102 check(true, exactArray instanceof ExactCheck[]); method
103 check(false, normalArray instanceof ExactCheck[]); method
105 check(false, regularObject instanceof NormalCheck[]); method
106 check(false, objectArray instanceof NormalCheck[]); method
107 check(false, doubleArray instanceof NormalCheck[]); method
108 check(true, exactArray instanceof NormalCheck[]); method
109 check(true, normalArray instanceof NormalCheck[]); method
111 check(false, regularObject instanceof Object[]); method
112 check(true, objectArray instanceof Object[]); method
113 check(false, doubleArray instanceof Object[]); method
114 check(true, exactArray instanceof Object[]); method
115 check(true, normalArray instanceof Object[]); method
121 public static void check(boolean expected, boolean actual) { method in class:Main
    [all...]
  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/
JavaVersionTest.java 14 check("1.8.1u40", "1.8.5u60");
15 check("1.8.0u40", "1.8.0u60");
16 check("1.8.0u40", "1.8.0u100");
21 check("9.0.1+12", "9.0.2+12");
22 check("9.0.2+60", "9.0.2+100");
27 check("1.7.0", "1.8.0u60");
28 check("1.8.1u40", "9.0.2+12");
33 check("1.8.0", "1.8.0.1");
43 private static void check(String v1, String v2) { method in class:JavaVersionTest

Completed in 1334 milliseconds

1 2 3 4 5 6 7 8 91011>>