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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Lexer/
cxx-features.cpp 8 #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(init_captures, 0, 0, 201304)
23 #if check(generic_lambdas, 0, 0, 201304)
27 #if check(constexpr, 0, 200704, 201304)
31 #if check(decltype_auto, 0, 0, 201304)
35 #if check(return_type_deduction, 0, 0, 201304)
39 #if check(runtime_arrays, 0, 0, 0
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1181.js 40 function check(count) { function
52 check(150);
53 check(200);
54 check(350);
  /external/compiler-rt/lib/tsan/
check_analyze.sh 22 check() { function
31 check $f rsp 3
32 check $f push 1
33 check $f pop 5
37 check $f rsp 3
38 check $f push 1
39 check $f pop 4
43 check $f rsp 0
44 check $f push 0
45 check $f pop
    [all...]
  /external/oprofile/libutil++/tests/
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...]
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...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
find-extra-includes 78 sub check subroutine
101 check($file);
  /external/chromium_org/tools/gyp/test/mac/xcode-gcc/
aliasing.cc 3 void check(int* h, long* k) { function
11 check((int*)&k, &k);
  /external/libcxx/test/localization/locales/locale/locale.statics/
classic.pass.cpp 17 void check(const std::locale& loc) function
57 check(loc);
58 check(std::locale("C"));
global.pass.cpp 19 void check(const std::locale& loc) function
58 check(loc);
61 check(loc2);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
common.py 43 def check(self, lines): member in class:CarriageReturnChecker
44 """Check for and strip trailing carriage returns from lines."""
68 def check(self, lines): member in class:TabChecker
text.py 43 def check(self, lines): member in class:TextChecker
44 self._tab_checker.check(lines)
50 checker.check(lines)
xcodeproj.py 50 def check(self, lines): member in class:XcodeProjectFileChecker
xml.py 37 def check(self, lines): member in class:XMLChecker
jsonchecker.py 38 def check(self, lines): member in class:JSONChecker
  /external/chromium_org/v8/test/mjsunit/
elements-kind-depends.js 38 function check(a) { function
47 check(b); // all OK
51 check(b); // fails
  /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>'}}
  /external/clang/test/SemaCXX/
windows-arm-valist.cpp 12 void check() { function
  /art/test/111-unresolvable-exception/src/
Main.java 20 check(false);
26 private static void check(boolean b) { method in class:Main
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
PKIXAttrCertChecker.java 44 * does not pass the check.
46 public abstract void check(X509AttributeCertificate attrCert, CertPath certPath, method in class:PKIXAttrCertChecker
  /external/chromium_org/media/base/
gmock_callback_support_unittest.cc 24 MockFunction<void(const TestCallback&)> check; local
25 EXPECT_CALL(check, Call(IsNullCallback()));
26 check.Call(TestCallback());
30 MockFunction<void(const TestCallback&)> check; local
31 EXPECT_CALL(check, Call(IsNotNullCallback()));
32 check.Call(base::Bind(&SetBool));
36 MockFunction<void(const base::Closure&)> check; local
38 EXPECT_CALL(check, Call(IsNotNullCallback()))
40 check.Call(base::Bind(&SetBool, true, &dst));
45 MockFunction<void(const TestCallback&)> check; local
54 MockFunction<void(int, const TestCallback&)> check; local
63 MockFunction<void(const TestCallback&)> check; local
74 MockFunction<void(const TestCallback&)> check; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
checksvnconfigfile.py 31 def check(host, fs): function
33 check the svn config file
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
sm4_analyze.cpp 31 #define check(x) do {if(!(x)) return false;} while(0) macro
51 check(!cf_stack.empty());
53 check(program.insns[v]->opcode == SM4_OPCODE_LOOP);
65 check(!cf_stack.empty());
68 check(program.insns[v]->opcode == SM4_OPCODE_IF);
70 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE);
77 check(!cf_stack.empty());
80 check(program.insns[v]->opcode == SM4_OPCODE_IF || program.insns[v]->opcode == SM4_OPCODE_ELSE);
82 check(program.insns[v]->opcode == SM4_OPCODE_SWITCH || program.insns[v]->opcode == SM4_OPCODE_CASE);
89 check(cf_stack.empty())
    [all...]
  /external/compiler-rt/test/BlocksRuntime/
nullblockisa.c 22 void check(void (^b)(void)) { function
39 check(^{ printf("%d\n", ++i); });

Completed in 503 milliseconds

1 2 3 4 5 6 7 8 91011>>