Searched defs:Check (Results 1 - 12 of 12) sorted by relevance

/external/v8/test/mjsunit/
H A Dgreedy.js44 function Check(n, expected) { function
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(2
[all...]
/external/gtest/test/
H A Dgtest_environment_test.cc111 void Check(bool condition, const char* msg) { function in namespace:__anon1230
137 Check(testing::AddGlobalTestEnvironment(env) == env,
142 Check(RunAllTests(env, NO_FAILURE) != 0,
145 Check(test_was_run,
148 Check(env->tear_down_was_run(),
153 Check(RunAllTests(env, NON_FATAL_FAILURE) != 0,
156 Check(test_was_run,
159 Check(env->tear_down_was_run(),
164 Check(RunAllTests(env, FATAL_FAILURE) != 0,
167 Check(!test_was_ru
[all...]
/external/v8/test/cctest/
H A Dtest-decls.cc59 void Check(const char* source,
126 void DeclarationContext::Check(const char* source, function in class:DeclarationContext
208 context.Check("var x; x",
216 context.Check("var x = 0; x",
224 context.Check("function x() { }; x",
232 context.Check("const x; x",
240 context.Check("const x = 0; x",
263 context.Check("var x; x",
271 context.Check("var x = 0; x",
279 context.Check("functio
[all...]
/external/v8/src/
H A Dfast-codegen.cc54 void FastCodeGenSyntaxChecker::Check(CompilationInfo* info) { function in class:v8::internal::FastCodeGenSyntaxChecker
219 // Check if the global variable is existing and non-deletable.
584 // Check if we can compile a global variable load directly from the cell.
H A Dfull-codegen.cc56 void FullCodeGenSyntaxChecker::Check(FunctionLiteral* fun) { function in class:v8::internal::FullCodeGenSyntaxChecker
324 // Check for supported calls
342 // Check all arguments to the call.
354 // Check all arguments to the call
363 // Check for inline runtime call
368 // Check all arguments to the call. (Relies on TEMP meaning STACK.)
528 // Check for stack-overflow exception.
781 // Check stack before looping.
815 // Check stack before looping.
857 // Check stac
[all...]
H A Dparser.cc250 bool Check(Token::Value token);
1539 // Check whether this statement is of the form this.x = ...;
1587 // Check that the property assigned to is a named property.
1597 // Check whether the value assigned is either a constant or matches the
1608 // Check whether the variable assigned matches an argument name.
3815 // Check for built-in macros.
3825 // Check here for other macros.
3858 bool Parser::Check(Token::Value token) { function in class:v8::internal::Parser
3869 // Check for automatic semicolon insertion according to
4118 } while (Check(Toke
[all...]
/external/v8/src/ia32/
H A Dfast-codegen-ia32.cc54 void FastCodeGenSyntaxChecker::Check(CompilationInfo* info) { function in class:v8::internal::FastCodeGenSyntaxChecker
219 // Check if the global variable is existing and non-deletable.
495 __ Check(not_equal, "DontDelete cells can't contain the hole");
787 // Check if we can compile a global variable load directly from the cell.
H A Dmacro-assembler-ia32.cc408 Check(not_equal, "code object not properly patched");
417 Check(equal, "stack frame types must match");
584 // Check the maps in the prototype chain.
600 // Check access rights to the global object. This has to happen
615 // Check the map of the current object.
620 // Check access rights to the global object. This has to happen
639 // Check the holder map.
671 Check(not_equal, "we should not have an empty lexical context");
678 // Check the context is a global context.
684 Check(equa
1539 void MacroAssembler::Check(Condition cc, const char* msg) { function in class:v8::internal::MacroAssembler
[all...]
/external/v8/src/mips/
H A Dmacro-assembler-mips.cc884 void MacroAssembler::Check(Condition cc, const char* msg, function in class:v8::internal::MacroAssembler
/external/sonivox/jet_tools/JetCreator/
H A Dmidifile.py304 def Check (self, event): member in class:EventTypeFilter
313 def Check (self, event): member in class:NoteFilter
323 def Check (self, event): member in class:ChannelFilter
384 if not f.Check(self):
/external/v8/src/arm/
H A Dmacro-assembler-arm.cc424 // Check whether the expected and actual arguments count match. If not,
699 // Check the maps in the prototype chain.
715 // Check access rights to the global object. This has to happen
741 // Check the holder map.
774 Check(ne, "we should not have an empty lexical context");
782 // Check the context is a global context.
792 Check(eq, "JSGlobalObject::global_context should be a global context.");
796 // Check if both contexts are the same.
801 // Check the context is a global context.
810 Check(n
1326 void MacroAssembler::Check(Condition cc, const char* msg) { function in class:v8::internal::MacroAssembler
[all...]
/external/v8/src/x64/
H A Dmacro-assembler-x64.cc281 if (FLAG_debug_code) Check(cc, msg);
285 void MacroAssembler::Check(Condition cc, const char* msg) { function in class:v8::internal::MacroAssembler
756 // Check for negative zero result. If product is zero, and one
778 // Check for negative zero result. If product is zero, and one
925 // Check for 0 divisor (result is +/-Infinity).
959 // Check that the remainder is zero.
1020 // Check for a negative zero result. If the result is zero, and the
1247 if (allow_stub_calls()) { // Check contains a stub call.
1249 Check(not_both_smis, "Both registers were smis in SelectNonSmi.");
1369 // Check tha
[all...]

Completed in 119 milliseconds