Searched defs:check (Results 1 - 25 of 153) sorted by relevance

1234567

/external/grub/stage2/
H A Dsize_test26 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
/external/oprofile/libutil++/tests/
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...]
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...]
/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/v8/test/mjsunit/regress/
H A Dregress-1181.js40 function check(count) { function
52 check(150);
53 check(200);
54 check(350)
/external/webkit/Tools/Scripts/
H A Dfind-extra-includes78 sub check subroutine
101 check($file);
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
H A Dcommon.py43 def check(self, lines): member in class:CarriageReturnChecker
68 def check(self, lines): member in class:TabChecker
H A Dpython.py36 def check(self, lines): member in class:PythonChecker
43 def _pep8_handle_error(line_number, offset, text, check):
H A Dtext.py43 def check(self, lines): member in class:TextChecker
44 self._tab_checker.check(lines)
50 checker.check(lines)
H A Dxml.py37 def check(self, lines): member in class:XMLChecker
H A Dchangelog.py58 def check(self, lines): member in class:ChangeLogChecker
59 self._tab_checker.check(lines)
/external/chromium/chrome/browser/chromeos/login/
H A Daccount_screen.h43 // Sets the flag forcing to check for HTTPS. Used in tests.
44 static void set_check_for_https(bool check) { check_for_https_ = check; } argument
63 // Indicates if we should check for HTTPS scheme. Overriden by tests.
/external/elfutils/tests/
H A Dhash.c23 check (const char *name, unsigned long int expected) function
37 status = check ("_DYNAMIC", 165832675);
38 status |= check ("_GLOBAL_OFFSET_TABLE_", 102264335);
/external/proguard/src/proguard/
H A DUpToDateChecker.java48 public boolean check() method in class:UpToDateChecker
/external/webkit/Tools/Scripts/webkitpy/style/
H A Dpatchreader.py51 def check(self, patch_string): member in class:PatchReader
60 # Don't check files which contain only deleted lines
/external/chromium/base/memory/
H A Dref_counted_unittest.cc35 CheckDerivedMemberAccess check; local
/external/chromium/chrome/browser/prefs/
H A Dpref_value_map_unittest.cc55 PrefValueMap check; local
59 reference.GetDifferingKeys(&check, &differing_paths);
65 EXPECT_TRUE(check.SetValue("a", Value::CreateStringValue("test")));
66 EXPECT_TRUE(check.SetValue("c", Value::CreateStringValue("test")));
67 EXPECT_TRUE(check.SetValue("d", Value::CreateStringValue("test")));
69 reference.GetDifferingKeys(&check, &differing_paths);
/external/clang/test/CodeGen/
H A D2007-05-15-PaddingElement.c17 int check(void) { function
/external/clang/test/Sema/
H A Darm-layout.c4 #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_
[all...]
/external/clang/test/SemaCXX/
H A Dgoto2.cpp11 bool check = true; local
13 if (check)
17 if (check)
21 if (check)
27 check = !check;
29 while (check);
35 if (check)
H A Dpragma-pack.cpp15 int check[sizeof(Sub) == 5 ? 1 : -1]; member in namespace:rdar8745206
32 int check[sizeof(Sub) == 13 ? 1 : -1]; member in namespace:check2
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-80981.js89 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 ('
3108 function check(status) function
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java50 public static boolean check(LocPathIterator path) method in class:HasPositionalPredChecker

Completed in 1702 milliseconds

1234567