Home
last modified time | relevance | path

Searched refs:Check (Results 1 – 25 of 744) sorted by relevance

12345678910>>...30

/external/v8/test/mjsunit/regress/
Dregress-2027.js30 function Check(time) { class
34 Check(d.setMilliseconds(10));
35 Check(d.setSeconds(10));
36 Check(d.setMinutes(10));
37 Check(d.setHours(10));
38 Check(d.setDate(10));
39 Check(d.setMonth(10));
40 Check(d.setFullYear(2010));
41 Check(d.setUTCMilliseconds(10));
42 Check(d.setUTCSeconds(10));
[all …]
/external/protobuf/gtest/test/
Dgtest_environment_test.cc111 void Check(bool condition, const char* msg) { in Check() function
137 Check(testing::AddGlobalTestEnvironment(env) == env, in main()
142 Check(RunAllTests(env, NO_FAILURE) != 0, in main()
145 Check(test_was_run, in main()
148 Check(env->tear_down_was_run(), in main()
153 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0, in main()
156 Check(test_was_run, in main()
159 Check(env->tear_down_was_run(), in main()
164 Check(RunAllTests(env, FATAL_FAILURE) != 0, in main()
167 Check(!test_was_run, in main()
[all …]
/external/chromium/testing/gtest/test/
Dgtest_environment_test.cc115 void Check(bool condition, const char* msg) { in Check() function
142 Check(testing::AddGlobalTestEnvironment(env) == env, in main()
147 Check(RunAllTests(env, NO_FAILURE) != 0, in main()
150 Check(test_was_run, in main()
153 Check(env->tear_down_was_run(), in main()
158 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0, in main()
161 Check(test_was_run, in main()
164 Check(env->tear_down_was_run(), in main()
169 Check(RunAllTests(env, FATAL_FAILURE) != 0, in main()
172 Check(!test_was_run, in main()
[all …]
/external/gtest/test/
Dgtest_environment_test.cc115 void Check(bool condition, const char* msg) { in Check() function
142 Check(testing::AddGlobalTestEnvironment(env) == env, in main()
147 Check(RunAllTests(env, NO_FAILURE) != 0, in main()
150 Check(test_was_run, in main()
153 Check(env->tear_down_was_run(), in main()
158 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0, in main()
161 Check(test_was_run, in main()
164 Check(env->tear_down_was_run(), in main()
169 Check(RunAllTests(env, FATAL_FAILURE) != 0, in main()
172 Check(!test_was_run, in main()
[all …]
/external/kernel-headers/original/asm-mips/
Dwar.h82 #error Check setting of R4600_V1_INDEX_ICACHEOP_WAR for your platform
112 #error Check setting of R4600_V1_HIT_CACHEOP_WAR for your platform
128 #error Check setting of R4600_V2_HIT_CACHEOP_WAR for your platform
141 #error Check setting of R5432_CP0_INTERRUPT_WAR for your platform
155 #error Check setting of BCM1250_M3_WAR for your platform
162 #error Check setting of SIBYTE_1956_WAR for your platform
178 #error Check setting of MIPS4K_ICACHE_REFILL_WAR for your platform
197 #error Check setting of MIPS_CACHE_SYNC_WAR for your platform
208 #error Check setting of TX49XX_ICACHE_INDEX_INV_WAR for your platform
216 #error Check setting of RM9000_CDEX_SMP_WAR for your platform
[all …]
/external/v8/test/mjsunit/
Dgreedy.js44 function Check(n, expected) { class
51 Check(0, 0);
52 Check(1, 1);
53 Check(2, 1);
54 Check(3, 1 + 1);
55 Check(4, 2 + 1);
56 Check(5, 3 + 2);
57 Check(10, 55);
58 Check(15, 610);
59 Check(20, 6765);
/external/v8/test/cctest/
Dtest-decls.cc59 void Check(const char* source,
126 void DeclarationContext::Check(const char* source, in Check() function in DeclarationContext
208 context.Check("var x; x", in TEST()
216 context.Check("var x = 0; x", in TEST()
224 context.Check("function x() { }; x", in TEST()
232 context.Check("const x; x", in TEST()
240 context.Check("const x = 0; x", in TEST()
263 context.Check("var x; x", in TEST()
271 context.Check("var x = 0; x", in TEST()
279 context.Check("function x() { }; x", in TEST()
[all …]
/external/llvm/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp87 static bool Check(DecodeStatus &Out, DecodeStatus In) { in Check() function
721 Check(result, AddThumbPredicate(MI)); in getInstruction()
730 Check(result, AddThumbPredicate(MI)); in getInstruction()
745 Check(result, AddThumbPredicate(MI)); in getInstruction()
787 Check(result, AddThumbPredicate(MI)); in getInstruction()
796 Check(result, AddThumbPredicate(MI)); in getInstruction()
812 Check(result, AddThumbPredicate(MI)); in getInstruction()
824 Check(result, AddThumbPredicate(MI)); in getInstruction()
838 Check(result, AddThumbPredicate(MI)); in getInstruction()
880 Check(S, DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder)); in DecodeGPRnopcRegisterClass()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DCheckers.td56 HelpText<"Check for dereferences of null pointers">,
60 …HelpText<"Check for logical errors for function calls and Objective-C message expressions (e.g., u…
64 …HelpText<"Check to see if the return value of a function call is different than the caller expects…
68 …HelpText<"Check for null pointers passed as arguments to a function whose arguments are marked wit…
72 HelpText<"Check for declarations of VLA of undefined or zero size">,
76 HelpText<"Check for division by zero">,
80 HelpText<"Check for undefined results of binary operators">,
84 HelpText<"Check that addresses to stack memory do not escape the function">,
96 …HelpText<"Check when casting a malloc'ed type T, whether the size is a multiple of the size of T">,
100 HelpText<"Check for cast from non-struct pointer to struct pointer">,
[all …]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp31 error_code Check(error_code Err) { in Check() function
89 Check(err); in loadObject()
92 Check(i->getType(SymType)); in loadObject()
93 Check(i->getName(Name)); in loadObject()
96 Check(i->getFlags(flags)); in loadObject()
102 Check(i->getSize(Size)); in loadObject()
111 Check(i->getFileOffset(FileOffset)); in loadObject()
112 Check(i->getSection(si)); in loadObject()
114 Check(si->getContents(sData)); in loadObject()
144 Check(err); in loadObject()
[all …]
/external/v8/test/mjsunit/harmony/
Dblock-early-errors.js36 function Check(str) { class
53 Check("let x;");
54 Check("let x = 1;");
55 Check("let x, y;");
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DEnumerableExtensions.cs61 Check.Source(source); in Check.Source()
93 Check.Source(source); in Contains()
113 Check.Source(source); in DefaultIfEmpty()
134 Check.Source(source); in Max()
157 Check.Source(source); in Min()
167 Check.SourceAndSelector(source, selector); in Select()
178 Check.SourceAndSelector(source, selector); in Select()
197 Check.SourceAndCollectionSelectors(source, collectionSelector, selector); in SelectMany()
203 Check.SourceAndSelector(source, selector); in SelectMany()
230 Check.Source(source); in Sum()
[all …]
/external/chromium/base/threading/
Dthread_collision_warner.h117 base::ThreadCollisionWarner::Check check_##obj(&obj)
161 class BASE_API Check {
163 explicit Check(ThreadCollisionWarner* warner) in Check() function
168 ~Check() {} in ~Check()
173 DISALLOW_COPY_AND_ASSIGN(Check);
/external/chromium/chrome/browser/ui/cocoa/infobars/
Dinfobar_controller_unittest.mm123 // Check that dismissing the infobar calls InfoBarClosed() on the delegate.
130 // Check that clicking on the link calls LinkClicked() on the
140 // Check that clicking on the link calls LinkClicked() on the
162 // Check to make sure the infobar message was set properly.
166 // Check that dismissing the infobar calls InfoBarClosed() on the delegate.
175 // Check that clicking the OK button calls Accept() and then closes
187 // Check that clicking the OK button calls Accept() but does not close
197 // Check that clicking the cancel button calls Cancel() and closes
209 // Check that clicking the cancel button calls Cancel() but does not close
219 // Check that clicking on the link calls LinkClicked() on the
[all …]
/external/compiler-rt/lib/asan/output_tests/
Dstack-use-after-return.cc.disabled19 // Check-Common: {{WRITE of size 1 .* thread T0}}
20 // Check-Common: {{ #0.*Func2.*stack-use-after-return.cc:18}}
21 // Check-Common: {{is located in frame <.*Func1.*> of T0's stack}}
/external/expat/tests/
DREADME.txt6 The Expat tests use a partial internal implementation of the "Check"
7 unit testing framework for C. More information on Check can be found at:
13 Since both Check and this test suite are young, it can all change in a
/external/llvm/test/CodeGen/CellSPU/
Dsub_ops.ll4 ; Check ordering of registers ret=param1-param2 -> rt=rb-ra
12 ; Check ordering of registers ret=param1-param2 -> rt=rb-ra
20 ; Check ordering of registers ret=param1-param2 -> rt=ra-rb
/external/mksh/src/
Dcheck.t30 Check version of shell.
70 Check that direct builtin calls work
80 Check that recursion is detected/avoided in aliases.
90 Check that recursion is detected/avoided in aliases.
102 Check that recursion is detected/avoided in aliases.
116 Check that alias expansion isn't done on keywords (in keyword
128 Check that alias expansion done after alias with trailing space.
141 Check that alias expansion done after alias with trailing space.
153 Check that alias expansion done after alias with trailing space
164 Check that newlines in an alias don't cause the command to be lost.
[all …]
/external/protobuf/gtest/
Dconfigure.ac25 # Check for programs used in building Google Test.
42 # Check for pthreads.
45 # TODO(chandlerc@google.com) Check for the necessary system headers.
47 # TODO(chandlerc@google.com) Check the types, structures, and other compiler
/external/clang/test/Index/
Dcomplete-super.m42 // Check "super" completion as a message receiver.
49 // Check "super" completion at the first identifier
60 // Check "super" completion at the second identifier
67 // Check "super" completion at the third identifier
71 // Check "super" completion with missing '['.
76 // Check "super" completion for a method declared in a category.
/external/chromium/third_party/libjingle/source/talk/base/
Dfirewallsocketserver.cc46 if (!server_->Check(FP_TCP, GetLocalAddress(), addr)) { in Connect()
62 if (!server_->Check(FP_UDP, GetLocalAddress(), addr)) { in SendTo()
81 if (server_->Check(FP_UDP, *paddr, GetLocalAddress())) in RecvFrom()
102 if (server_->Check(FP_TCP, addr, GetLocalAddress())) { in Accept()
172 bool FirewallSocketServer::Check(FirewallProtocol p, in Check() function in talk_base::FirewallSocketServer
/external/llvm/test/CodeGen/ARM/
Dvst4.ll5 ;Check the alignment value. Max for this instruction is 256 bits:
12 ;Check for a post-increment updating store with register increment.
26 ;Check the alignment value. Max for this instruction is 256 bits:
36 ;Check the alignment value. Max for this instruction is 256 bits:
55 ;Check the alignment value. Max for this instruction is 256 bits:
65 ;Check the alignment value. Max for this instruction is 256 bits:
75 ;Check for no alignment specifier.
104 ;Check for a post-increment updating store.
Dvst2.ll5 ;Check the alignment value. Max for this instruction is 128 bits:
12 ;Check for a post-increment updating store with register increment.
26 ;Check the alignment value. Max for this instruction is 128 bits:
54 ;Check the alignment value. Max for this instruction is 128 bits:
62 ;Check for a post-increment updating store.
77 ;Check the alignment value. Max for this instruction is 256 bits:
86 ;Check the alignment value. Max for this instruction is 256 bits:
96 ;Check the alignment value. Max for this instruction is 256 bits:
Dvld2.ll16 ;Check the alignment value. Max for this instruction is 128 bits:
27 ;Check the alignment value. Max for this instruction is 128 bits:
59 ;Check for a post-increment updating load.
76 ;Check the alignment value. Max for this instruction is 128 bits:
88 ;Check the alignment value. Max for this instruction is 256 bits:
97 ;Check for a post-increment updating load with register increment.
113 ;Check the alignment value. Max for this instruction is 256 bits:
125 ;Check the alignment value. Max for this instruction is 256 bits:
Dvlddup.ll5 ;Check the (default) alignment value.
15 ;Check the alignment value. Max for this instruction is 16 bits:
25 ;Check the alignment value. Max for this instruction is 32 bits:
44 ;Check the (default) alignment value.
67 ;Check the (default) alignment value.
80 ;Check that a power-of-two alignment smaller than the total size of the memory
92 ;Check for a post-increment updating load.
110 ;Check the alignment value. Max for this instruction is 64 bits:
128 ;Check for a post-increment updating load with register increment.
149 ;Check the (default) alignment value. VLD3 does not support alignment.
[all …]

12345678910>>...30