HomeSort by relevance Sort by last modified time
    Searched defs:Check (Results 1 - 20 of 20) sorted by null

  /external/v8/test/mjsunit/
greedy.js 44 function Check(n, expected) {
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)
    [all...]
  /external/chromium/base/
thread_collision_warner.h 115 base::ThreadCollisionWarner::Check check_##obj(&obj)
131 // in case of collision (check thread_collision_warner_unittests.cc)
159 class Check {
161 explicit Check(ThreadCollisionWarner* warner)
166 ~Check() {}
171 DISALLOW_COPY_AND_ASSIGN(Check);
timer.h 243 timer_.Start(delay, this, &DelayTimer<Receiver>::Check);
246 void Check() {
message_pump_glib_unittest.cc 102 static gboolean Check(GSource* source) {
122 EventInjector::Check,
277 // After all the events have been processed, post a task that will check that
  /frameworks/base/media/libstagefright/codecs/common/include/
voMem.h 47 VO_U32 (VO_API * Check) (VO_S32 uID, VO_PTR pBuffer, VO_U32 uSize);
  /external/chromium/net/base/
x509_certificate.cc 94 X509Certificate::Policy::Judgment X509Certificate::Policy::Check(
96 // It shouldn't matter which set we check first, but we check denied first
141 // Check if we already have this certificate in memory.
  /external/gtest/test/
gtest_environment_test.cc 104 // The sole purpose of this TEST is to enable us to check whether it
111 void Check(bool condition, const char* msg) {
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
    [all...]
  /external/protobuf/gtest/test/
gtest_environment_test.cc 104 // The sole purpose of this TEST is to enable us to check whether it
111 void Check(bool condition, const char* msg) {
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
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
EventRecurrenceTest.java 304 private static class Check {
305 Check(String k, int... v) {
317 Check[] checks = new Check[]{
318 new Check("BYSECOND", -100, -1, 60, 100),
319 new Check("BYMINUTE", -100, -1, 60, 100),
320 new Check("BYHOUR", -100, -1, 24, 100),
321 new Check("BYMONTHDAY", -100, -32, 0, 32, 100),
322 new Check("BYYEARDAY", -400, -367, 0, 367, 400),
323 new Check("BYWEEKNO", -100, -54, 0, 54, 100)
    [all...]
  /external/v8/src/
fast-codegen.cc 54 void FastCodeGenSyntaxChecker::Check(CompilationInfo* info) {
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.
full-codegen.cc 56 void FullCodeGenSyntaxChecker::Check(FunctionLiteral* fun) {
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 stack before looping
    [all...]
parser.cc 159 // By making the 'exception handling' explicit, we are forced to check
250 bool Check(Token::Value token);
4208 StackLimitCheck check; local
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 884 void MacroAssembler::Check(Condition cc, const char* msg,
  /external/v8/test/cctest/
test-decls.cc 59 void Check(const char* source,
126 void DeclarationContext::Check(const char* source,
142 CHECK(!catcher.HasCaught());
147 CHECK(expectations == EXPECT_EXCEPTION);
148 CHECK(catcher.HasCaught());
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"
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 208 // context register, so we check that none of the clobbered
424 // Check whether the expected and actual arguments count match. If not,
659 // for fp. We expect the code throwing an exception to check fp
699 // Check the maps in the prototype chain.
712 // Branch on the result of the map check.
715 // Check access rights to the global object. This has to happen
716 // after the map check so that we know that the object is
741 // Check the holder map.
746 // Log the check depth.
747 LOG(IntEvent("check-maps-depth", depth))
    [all...]
  /external/v8/src/ia32/
fast-codegen-ia32.cc 54 void FastCodeGenSyntaxChecker::Check(CompilationInfo* info) {
219 // Check if the global variable is existing and non-deletable.
495 __ Check(not_equal, "DontDelete cells can't contain the hole");
583 // If both operands are known to be a smi then there is no need to check
648 // If there is a global variable access check if the global object is the
787 // Check if we can compile a global variable load directly from the cell.
macro-assembler-ia32.cc 150 // context register, so we check that none of the clobbered
154 // First, check if a remembered set write is even needed. The tests below
408 Check(not_equal, "code object not properly patched");
417 Check(equal, "stack frame types must match");
548 // for ebp. We expect the code throwing an exception to check ebp
584 // Check the maps in the prototype chain.
598 // Branch on the result of the map check.
600 // Check access rights to the global object. This has to happen
601 // after the map check so that we know that the object is
615 // Check the map of the current object
    [all...]
  /external/sonivox/jet_tools/JetCreator/
midifile.py 304 def Check (self, event):
313 def Check (self, event):
323 def Check (self, event):
382 # check all filters
384 if not f.Check(self):
852 # check for note-on occuring before end of current note
994 # check for valid track length
1006 # check for end of track
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInt.java 75 private static void Check(boolean success) {
88 Check(this.bignum != 0);
95 Check(bi.bignum != 0);
107 Check(NativeBN.BN_copy(this.bignum, from.bignum));
119 Check(NativeBN.putLongInt(this.bignum, val));
124 Check(NativeBN.putULongInt(this.bignum, val, neg));
131 Check((usedLen > 0));
141 Check((usedLen > 0));
208 Check(NativeBN.BN_bin2bn(a, a.length, neg, this.bignum));
213 Check(NativeBN.litEndInts2bn(a, a.length, neg, this.bignum))
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 181 // context register, so we check that none of the clobbered
185 // First, check if a remembered set write is even needed. The tests below
281 if (FLAG_debug_code) Check(cc, msg);
285 void MacroAssembler::Check(Condition cc, const char* msg) {
371 // constant, we check that the actual number of arguments match the
431 // Rely on the assertion to check that the number of provided
433 // parameter count to avoid emitting code to do the check.
756 // Check for negative zero result. If product is zero, and one
778 // Check for negative zero result. If product is zero, and one
783 // One of src1 and src2 is zero, the check whether the other i
    [all...]

Completed in 314 milliseconds