HomeSort by relevance Sort by last modified time
    Searched refs:check (Results 1 - 25 of 2185) 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 3 // Check #pragma pack handling with bitfields.
13 extern int check[sizeof(struct s0) == 6 ? 1 : -1];
20 extern int check[sizeof(struct s1) == 5 ? 1 : -1];
28 extern int check[sizeof(struct s2) == 6 ? 1 : -1];
36 extern int check[sizeof(struct s3) == 8 ? 1 : -1];
37 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
44 extern int check[sizeof(struct s4) == 4 ? 1 : -1];
45 extern int check[offsetof(struct s4, f3) == 2 ? 1 : -1];
arm-layout.c 4 #define check(name, cond) int _##name##_check[(cond) ? 1 : -1] macro
8 check(s0_size, sizeof(struct s0) == 16);
10 check(s0_size, sizeof(struct s0) == 12);
15 check(s1_size, sizeof(struct s1) == 16);
17 check(s1_size, sizeof(struct s1) == 12);
26 check(s2_size, sizeof(struct s2) == 8);
27 check(s2_offset_0, __builtin_offsetof(struct s2, field0) == 0);
28 check(s2_offset_1, __builtin_offsetof(struct s2, field2) == 7);
30 check(s2_size, sizeof(struct s2) == 6);
31 check(s2_offset_0, __builtin_offsetof(struct s2, field0) == 0)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-80981.js 89 case 0: if (n[0]++ > 0) check ('a string 0'); break;
90 case 1: if (n[1]++ > 0) check ('a string 1'); break;
91 case 2: if (n[2]++ > 0) check ('a string 2'); break;
92 case 3: if (n[3]++ > 0) check ('a string 3'); break;
93 case 4: if (n[4]++ > 0) check ('a string 4'); break;
94 case 5: if (n[5]++ > 0) check ('a string 5'); break;
95 case 6: if (n[6]++ > 0) check ('a string 6'); break;
96 case 7: if (n[7]++ > 0) check ('a string 7'); break;
97 case 8: if (n[8]++ > 0) check ('a string 8'); break;
98 case 9: if (n[9]++ > 0) check ('a string 9'); break
3108 function check(status) function
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Checker.cpp 25 void Checker<check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
26 check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
27 check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
28 check::_VoidCheck, check::_VoidCheck, check::_VoidCheck
    [all...]
  /external/clang/test/SemaCXX/
goto2.cpp 11 bool check = true; local
13 if (check)
17 if (check)
21 if (check)
27 check = !check;
29 while (check);
35 if (check)
  /external/oprofile/libutil++/tests/
path_filter_tests.cpp 19 #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(f2, "foo1", false)
    [all...]
comma_list_tests.cpp 19 #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(c1, 2, true)
    [all...]
string_filter_tests.cpp 19 #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(f4, "no", false)
    [all...]
glob_filter_tests.cpp 19 #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(f2, "foo1", false)
    [all...]
  /external/grub/stage2/
size_test 3 # Check the sizes of Stage 2 and Stage 1.5's.
26 check () function
39 check ffs_stage1_5 7168
41 check ufs2_stage1_5 7168
45 check fat_stage1_5 31744
48 check e2fs_stage1_5 31744
51 check minix_stage1_5 31744
  /frameworks/base/core/tests/coretests/src/android/net/
UriMatcherTest.java 43 check("content://asdf", UriMatcher.NO_MATCH);
44 check("content://people", PEOPLE);
45 check("content://people/1", PEOPLE_ID);
46 check("content://people/asdf", UriMatcher.NO_MATCH);
47 check("content://people/2/phones", PEOPLE_PHONES);
48 check("content://people/2/phones/3", PEOPLE_PHONES_ID);
49 check("content://people/2/phones/asdf", UriMatcher.NO_MATCH);
50 check("content://people/2/addresses", PEOPLE_ADDRESSES);
51 check("content://people/2/addresses/3", PEOPLE_ADDRESSES_ID);
52 check("content://people/2/addresses/asdf", UriMatcher.NO_MATCH)
85 void check(String uri, int expected) method in class:UriMatcherTest
    [all...]
  /external/icu4c/test/threadtest/
threadtest.h 32 // check() will be called periodically in a single threaded
41 virtual void check() = 0;
  /external/elfutils/tests/
hash.c 35 check (const char *name, unsigned long int expected) function
48 /* Check some names. We know what the expected result is. */
49 status = check ("_DYNAMIC", 165832675);
50 status |= check ("_GLOBAL_OFFSET_TABLE_", 102264335);
  /external/stlport/test/unit/
test_errno.cpp 8 #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
  /ndk/tests/device/test-gnustl-full/unit/
test_errno.cpp 8 #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
  /ndk/tests/device/test-stlport/unit/
test_errno.cpp 8 #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/clang/lib/StaticAnalyzer/Checkers/
CheckerDocumentation.cpp 36 class CheckerDocumentation : public Checker< check::PreStmt<DeclStmt>,
37 check::PostStmt<CallExpr>,
38 check::PreObjCMessage,
39 check::PostObjCMessage,
40 check::BranchCondition,
41 check::Location,
42 check::Bind,
43 check::DeadSymbols,
44 check::EndPath,
45 check::EndAnalysis
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
CheckedOutputStream.java 31 private final Checksum check; field in class:CheckedOutputStream
45 check = cs;
54 return check;
69 check.update(val);
89 check.update(buf, off, nbytes);
  /external/valgrind/main/memcheck/tests/
str_tester.c 49 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 (strcmp ("a\203", "a") > 0, 8); /* Tricky if char signed. *
    [all...]
  /external/clang/test/Parser/
cxx-ambig-paren-expr.cpp 44 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/bison/tests/
Makefile.am 70 check-local: atconfig atlocal $(TESTSUITE)
80 .PHONY: maintainer-check-g++
81 maintainer-check-g++: $(TESTSUITE)
84 .PHONY: maintainer-check-posix
85 maintainer-check-posix: $(TESTSUITE)
88 .PHONY: maintainer-check-valgrind
89 maintainer-check-valgrind: $(TESTSUITE)
93 .PHONY: maintainer-check
94 maintainer-check: maintainer-check-posix maintainer-check-valgrind maintainer-check-g+
    [all...]
  /cts/libs/util/src/android/cts/util/
PollingCheck.java 34 protected abstract boolean check(); method in class:PollingCheck
37 if (check()) {
49 if (check()) {
59 public static void check(CharSequence message, long timeout, Callable<Boolean> condition) method in class:PollingCheck
  /dalvik/dx/tests/073-dex-null-array-refs/
Blort.java 47 if (check()) {
55 if (check()) {
63 if (check()) {
70 public static boolean check() { method in class:Blort
  /external/chromium/chrome/common/extensions/docs/server/
chromeextensionsdocs.py 189 self.check("/trunk/", "http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/index.html", Channel.TRUNK)
190 self.check("/trunk/index.html", "http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/index.html", Channel.TRUNK)
191 self.check("/trunk/getstarted.html", "http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/getstarted.html", Channel.TRUNK)
192 self.check("/trunk/images/toolstrip.png", "http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/images/toolstrip.png", Channel.TRUNK)
195 self.check("/dev/", "http://src.chromium.org/viewvc/chrome/branches/%s/src/chrome/common/extensions/docs/index.html", Channel.DEV)
196 self.check("/dev/index.html", "http://src.chromium.org/viewvc/chrome/branches/%s/src/chrome/common/extensions/docs/index.html", Channel.DEV)
197 self.check("/dev/getstarted.html", "http://src.chromium.org/viewvc/chrome/branches/%s/src/chrome/common/extensions/docs/getstarted.html", Channel.DEV)
198 self.check("/dev/images/toolstrip.png", "http://src.chromium.org/viewvc/chrome/branches/%s/src/chrome/common/extensions/docs/images/toolstrip.png", Channel.DEV)
201 self.check("/beta/", "http://src.chromium.org/viewvc/chrome/branches/%s/src/chrome/common/extensions/docs/index.html", Channel.BETA)
202 self.check("/beta/index.html", "http://src.chromium.org/viewvc/chrome/branches/%s/src/chrome/common/extension (…)
259 def check(self, path, expectedUrl, expectedChannel): member in class:MainPage
    [all...]

Completed in 1423 milliseconds

1 2 3 4 5 6 7 8 91011>>