HomeSort by relevance Sort by last modified time
    Searched refs:CHECK (Results 501 - 525 of 2811) sorted by null

<<21222324252627282930>>

  /external/chromium_org/v8/test/cctest/
test-platform-tls.cc 49 CHECK(!Thread::HasThreadLocal(keys[i]));
55 CHECK(Thread::HasThreadLocal(keys[i]));
65 CHECK(Thread::HasThreadLocal(keys[i]));
test-assembler-x64.cc 74 CHECK(buffer);
96 CHECK(buffer);
128 CHECK(buffer);
150 CHECK(buffer);
178 CHECK(buffer);
206 CHECK(buffer);
230 CHECK(buffer);
252 CHECK(buffer);
276 CHECK(buffer);
305 CHECK(buffer)
    [all...]
test-deoptimization.cc 132 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
148 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
170 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
187 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
211 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
240 CHECK(!fun.IsEmpty());
288 CHECK(env->Global()->Get(v8_str("result"))->IsTrue());
367 CHECK(!CcTest::i_isolate()->use_crankshaft() ||
376 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized());
379 CHECK(result->IsString())
    [all...]
  /external/compiler-rt/lib/asan/
asan_fake_stack.cc 52 CHECK(node);
57 CHECK(first_);
58 CHECK(last_);
65 CHECK(first_ && last_ && "Exhausted fake stack");
102 CHECK(ClassMmapSize(size_class) >= GetPageSizeCached());
114 CHECK(i == ClassMmapSize(size_class));
120 CHECK(size <= kMaxStackMallocSize && size > 1);
126 CHECK(fake_frame);
141 CHECK(alive_);
144 CHECK(allocated_size_classes_[size_class])
    [all...]
  /external/libffi/testsuite/libffi.call/
struct1.c 2 Purpose: Check structures.
51 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
60 CHECK(ts1_result->ui == 556);
61 CHECK(ts1_result->d == 3.14159 - 1);
struct2.c 2 Purpose: Check structures.
49 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1, &ts2_type, args) == FFI_OK);
62 CHECK(ts2_result->d1 == 5.55 - 1);
63 CHECK(ts2_result->d2 == 6.66 - 1);
struct5.c 2 Purpose: Check structures.
50 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &ts5_type, args) == FFI_OK);
59 CHECK(ts5_result->c1 == 7);
60 CHECK(ts5_result->c2 == 3);
struct6.c 2 Purpose: Check structures.
49 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1, &ts6_type, args) == FFI_OK);
59 CHECK(ts6_result->f == 5.55f + 1);
60 CHECK(ts6_result->d == 6.66 + 1);
struct9.c 2 Purpose: Check structures.
49 CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1, &ts9_type, args) == FFI_OK);
62 CHECK(ts9_result->f == 5.55f + 1);
63 CHECK(ts9_result->i == 5 + 1);
  /external/llvm/test/MC/X86/AlignedBundling/
pad-align-to-bundle-end.s 17 # CHECK: a: nop
18 # CHECK-NEXT: b: callq
28 # CHECK: 1a: nop
31 # CHECK: 20: nop
32 # CHECK-NEXT: 26: callq
33 # CHECK-NEXT: 2b: callq
  /external/regex-re2/re2/testing/
simplify_test.cc 149 CHECK(re != NULL) << " " << tests[i].regexp << " " << status.Text();
151 CHECK(sre != NULL);
153 // Check that already-simple regexps don't allocate new ones.
155 CHECK(re == sre) << " " << tests[i].regexp
  /external/v8/test/cctest/
test-platform-tls.cc 23 CHECK(!Thread::HasThreadLocal(keys[i]));
29 CHECK(Thread::HasThreadLocal(keys[i]));
39 CHECK(Thread::HasThreadLocal(keys[i]));
  /external/valgrind/unittest/
windows_tests.cc 58 CHECK(t == 0);
68 CHECK(t > 0);
83 CHECK(t > 0);
122 CHECK(t2 > 0);
123 CHECK(WAIT_OBJECT_0 == ::WaitForSingleObject(t2, INFINITE));
124 CHECK(*var == 42);
209 CHECK(0 != ::RegisterWaitForSingleObject(&wait_object, monitored_object,
216 CHECK(0 != ::UnregisterWaitEx(wait_object, INVALID_HANDLE_VALUE));
218 CHECK(*obj == 2);
241 CHECK(QueueUserWorkItem(Callback, obj, i % 2 ? WT_EXECUTELONGFUNCTION : 0))
    [all...]
linear_solver.h 14 CHECK(ix < N && ix >= 0);
19 CHECK(ix < N && ix >= 0);
24 CHECK(other.GetSize() == N);
32 CHECK(other.GetSize() == N);
47 CHECK(other.GetSize() == N);
71 CHECK(from.GetSize() == N);
110 CHECK(i < M && i >= 0);
111 CHECK(j < data.size() && j >= 0);
117 CHECK(i < M && i >= 0);
118 CHECK(j < data.size() && j >= 0)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
testing.h 34 // CHECK is used for assertions that verify the consistency of the test itself,
37 // It is better to use a preprocessor macro for CHECK
46 #define CHECK(CONDITION) assert(CONDITION)
71 CHECK(!IsStarted());
83 CHECK(IsStarted());
119 CHECK(!IsStarted());
131 CHECK(IsStarted());
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_sync_processor.cc 26 CHECK(type == syncer::EXTENSION_SETTINGS || type == syncer::APP_SETTINGS);
27 CHECK(sync_processor);
36 CHECK(!initialized_) << "Init called multiple times";
48 CHECK(initialized_) << "Init not called";
100 CHECK(initialized_) << "Init not called";
  /external/chromium_org/extensions/common/permissions/
api_permission.cc 34 virtual bool Check(
40 CHECK(info() == rhs->info());
47 CHECK(info() == rhs->info());
66 CHECK(info() == rhs->info());
71 CHECK(info() == rhs->info());
76 CHECK(info() == rhs->info());
  /external/chromium_org/sdch/open-vcdiff/src/
testing.h 34 // CHECK is used for assertions that verify the consistency of the test itself,
37 // It is better to use a preprocessor macro for CHECK
46 #define CHECK(CONDITION) assert(CONDITION)
71 CHECK(!IsStarted());
83 CHECK(IsStarted());
119 CHECK(!IsStarted());
131 CHECK(IsStarted());
  /external/llvm/test/DebugInfo/SystemZ/
eh_frame_personality.s 63 # CHECK: Contents of section .eh_frame:
64 # CHECK-NEXT: 0000 0000001c 00000000 017a504c 52000178 .........zPLR..x
65 # CHECK-NEXT: 0010 0e079b00 0000001b 1b0c0fa0 01000000 ................
66 # CHECK-NEXT: 0020 0000001c 00000024 00000000 00000012 .......$........
67 # CHECK-NEXT: 0030 04000000 00468e06 8f05440e c0020000 .....F....D.....
  /external/open-vcdiff/src/
testing.h 34 // CHECK is used for assertions that verify the consistency of the test itself,
37 // It is better to use a preprocessor macro for CHECK
46 #define CHECK(CONDITION) assert(CONDITION)
71 CHECK(!IsStarted());
83 CHECK(IsStarted());
119 CHECK(!IsStarted());
131 CHECK(IsStarted());
  /frameworks/av/media/libstagefright/timedtext/
TimedText3GPPSource.cpp 49 CHECK(textBuffer != NULL);
72 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
73 CHECK(strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) == 0);
96 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
97 CHECK(strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) == 0);
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 38 // in the object. This allows us to easily check for
119 // it's confusing enough to check that it's easiest to just not to test.
423 CHECK(object.ptr);
525 // Check object contents
532 // For large objects, we just check a prefix/suffix
551 CHECK(p == NULL); // huge allocation s should fail!
555 // Check that asking for stuff tiny bit smaller than largest possible
572 // Check that ReleaseFreeMemory has no visible effect (aka, does not
575 CHECK(inst);
584 CHECK(p == NULL); // calloc(n, s) should not succee
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 38 // in the object. This allows us to easily check for
119 // it's confusing enough to check that it's easiest to just not to test.
423 CHECK(object.ptr);
525 // Check object contents
532 // For large objects, we just check a prefix/suffix
551 CHECK(p == NULL); // huge allocation s should fail!
555 // Check that asking for stuff tiny bit smaller than largest possible
572 // Check that ReleaseFreeMemory has no visible effect (aka, does not
575 CHECK(inst);
584 CHECK(p == NULL); // calloc(n, s) should not succee
    [all...]
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
test_interface.cc 96 CHECK(it->second != NULL);
143 CHECK(callback_name != NULL && strlen(callback_name) > 0);
144 CHECK(func != NULL);
147 CHECK(callback_info != NULL);
195 CHECK(image_data != kInvalidResource);
197 CHECK(PPBImageData()->Describe(image_data, &image_desc) == PP_TRUE);
200 CHECK(*bmp != NULL);
214 CHECK(PP_TRUE == PPBGraphics2D()->Describe(graphics2d, &size2d, &dummy));
220 CHECK(PP_TRUE == PPBImageData()->Describe(image, &image_desc));
223 CHECK(origin.x >= 0 && origin.y >= 0 &
    [all...]
  /external/chromium_org/sandbox/linux/services/
credentials.cc 52 // Don't use ScopedFILE in base/file_util.h since it doesn't check fclose().
113 CHECK(0 == unshare(CLONE_FILES));
183 CHECK(dir);
193 CHECK(base::StringToInt(e.d_name, &fd_num));
200 CHECK(fstatat(proc_self_fd, e.d_name, &s, 0) == 0);
212 CHECK(cap);
220 CHECK(current_cap);
222 CHECK(empty_cap);
228 CHECK(current_cap);
230 CHECK(cap_text)
    [all...]

Completed in 447 milliseconds

<<21222324252627282930>>