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

<<21222324252627282930>>

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 127 // Sanity check: filename is a regular file.
137 CHECK(stack_top);
138 CHECK(stack_bottom);
147 CHECK(env_ptr);
149 CHECK(environ);
328 CHECK(sizeof(OSSpinLock) <= sizeof(opaque_storage_));
332 CHECK(!owner_);
337 CHECK(owner_ == (uptr)pthread_self());
sanitizer_win.cc 69 CHECK(stack_top);
70 CHECK(stack_bottom);
85 CHECK("unable to mmap" && 0);
94 CHECK("unable to unmap" && 0);
307 CHECK(li == LINKER_INITIALIZED || owner_ == LOCK_UNINITIALIZED);
309 CHECK(sizeof(CRITICAL_SECTION) <= sizeof(opaque_storage_));
315 CHECK(sizeof(CRITICAL_SECTION) <= sizeof(opaque_storage_));
  /frameworks/av/cmds/stagefright/
stagefright.cpp 123 CHECK(size >= 7);
124 CHECK(ptr[0] == 1); // configurationVersion == 1
168 CHECK(meta->findCString(kKeyMIMEType, &mime));
179 CHECK(!gPreferSoftwareCodec);
222 CHECK(meta->findInt64(kKeyDuration, &durationUs));
234 CHECK(buffer == NULL);
244 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
322 CHECK(buffer == NULL);
427 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
433 CHECK(!"sync frame detection not implemented yet for MPEG4")
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 47 CHECK(dataSource != NULL);
69 CHECK(extractor != NULL);
75 CHECK(meta->findCString(kKeyMIMEType, &mime));
114 CHECK(meta->findInt32(kKeyWidth, &width));
115 CHECK(meta->findInt32(kKeyHeight, &height));
208 CHECK(track->mSource != NULL);
255 CHECK(mbuf->meta_data()->findInt64(kKeyTime, &timeUs));
  /art/compiler/utils/
assembler.h 54 CHECK(!IsLinked());
60 CHECK(!IsUnused());
65 CHECK(IsLinked());
81 CHECK(!IsBound());
83 CHECK(IsBound());
87 CHECK(!IsBound());
89 CHECK(IsLinked());
152 CHECK(HasEnsuredCapacity());
225 // check that any single generated instruction doesn't overflow the
233 CHECK(!buffer->HasEnsuredCapacity()); // Cannot nest
    [all...]
  /art/runtime/gc/accounting/
space_bitmap.cc 55 CHECK(mem_map != nullptr);
62 CHECK(heap_begin != NULL);
104 CHECK(bitmap_begin_ != NULL);
105 CHECK(callback != NULL);
132 CHECK(live_bitmap.bitmap_begin_ != NULL);
133 CHECK(mark_bitmap.bitmap_begin_ != NULL);
136 CHECK(callback != NULL);
251 CHECK(bitmap_begin_ != NULL);
252 CHECK(callback != NULL);
card_table.cc 59 CHECK(mem_map.get() != NULL) << "couldn't allocate card table";
65 CHECK(cardtable_begin != NULL);
108 CHECK(AddrIsInCardTable(addr))
  /external/chromium_org/third_party/re2/re2/testing/
parse_test.cc 211 CHECK(re[i] != NULL) << " " << tests[i].regexp << " "
359 CHECK(Regexp::Parse(badtests[i], Regexp::PerlX, NULL) == NULL)
361 CHECK(Regexp::Parse(badtests[i], Regexp::NoParseFlags, NULL) == NULL)
365 CHECK(Regexp::Parse(only_posix[i], Regexp::PerlX, NULL) == NULL)
368 CHECK(re) << " " << only_posix[i];
372 CHECK(Regexp::Parse(only_perl[i], Regexp::NoParseFlags, NULL) == NULL)
375 CHECK(re) << " " << only_perl[i];
389 CHECK(re != NULL) << " " << tests[i].regexp << " " << status.Text();
396 // Unfortunately we can't check the length here, because
404 CHECK(nre != NULL) << " reparse " << t << " " << status.Text()
    [all...]
  /external/regex-re2/re2/testing/
parse_test.cc 211 CHECK(re[i] != NULL) << " " << tests[i].regexp << " "
359 CHECK(Regexp::Parse(badtests[i], Regexp::PerlX, NULL) == NULL)
361 CHECK(Regexp::Parse(badtests[i], Regexp::NoParseFlags, NULL) == NULL)
365 CHECK(Regexp::Parse(only_posix[i], Regexp::PerlX, NULL) == NULL)
368 CHECK(re) << " " << only_posix[i];
372 CHECK(Regexp::Parse(only_perl[i], Regexp::NoParseFlags, NULL) == NULL)
375 CHECK(re) << " " << only_perl[i];
389 CHECK(re != NULL) << " " << tests[i].regexp << " " << status.Text();
396 // Unfortunately we can't check the length here, because
404 CHECK(nre != NULL) << " reparse " << t << " " << status.Text()
    [all...]
  /art/compiler/jni/quick/
calling_convention.cc 55 CHECK(HasNext());
129 CHECK(HasNext());
160 CHECK(IsCurrentParamAReference());
  /art/runtime/mirror/
array.h 129 CHECK(array_class_ == NULL);
130 CHECK(array_class != NULL);
135 CHECK(array_class_ != NULL);
  /external/chromium/base/i18n/
time_formatting.cc 57 CHECK(U_SUCCESS(status));
61 CHECK(U_SUCCESS(status));
65 CHECK(U_SUCCESS(status));
  /external/chromium/chrome/common/
service_process_util_posix.cc 65 CHECK(!signal->IsSignaled());
128 CHECK(!state_);
140 CHECK(state_);
  /external/chromium_org/chrome/browser/policy/
profile_policy_connector_factory.cc 54 CHECK(!map_entry);
82 CHECK(it != connectors_.end());
103 CHECK(user);
  /external/chromium_org/chrome/browser/predictors/
predictor_database.cc 88 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB) ||
105 CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI) ||
114 CHECK(BrowserThread::CurrentlyOn(BrowserThread::DB) ||
  /external/chromium_org/content/browser/
browser_thread_unittest.cc 21 CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
39 CHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
55 CHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
  /external/chromium_org/media/audio/sounds/
sounds_manager.cc 127 CHECK(!g_instance) << "SoundsManager::Create() is called twice";
138 CHECK(g_instance) << "SoundsManager::Shutdown() is called "
146 CHECK(g_instance) << "SoundsManager::Get() is called before Create()";
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 28 CHECK(!thr->in_symbolizer);
34 CHECK(thr->in_symbolizer);
88 CHECK(cur_entry);
  /ndk/build/tools/
build-host-perl.sh 44 CHECK=no
45 do_check_option () { CHECK=yes; }
46 register_option "--check" do_check_option "Check Perl"
62 # Check source directory
111 if [ "$CHECK" = "yes" ]; then
113 run make check
114 fail_warning "Failed to check perl-$PERL_VERSION!"
  /frameworks/av/media/libstagefright/wifi-display/source/
PlaybackSession.cpp 152 CHECK(!mStarted);
159 CHECK(format->findString("mime", &mime));
194 CHECK(!mStarted);
272 CHECK(accessUnit != NULL);
306 CHECK(outputBuffer->meta()->findInt64("timeUs", timeUs));
318 CHECK(!mQueuedOutputBuffers.empty());
488 CHECK(msg->findInt32("what", &what));
491 CHECK(msg->findSize("trackIndex", &trackIndex));
495 CHECK(msg->findBuffer("accessUnit", &accessUnit));
528 CHECK(msg->findInt32("err", &err))
    [all...]
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 141 CHECK((*accessUnit)->meta()->findInt32("discontinuity", &type));
159 CHECK((*accessUnit)->meta()->findInt32("switchGeneration", &switchGeneration));
174 CHECK((*accessUnit)->meta()->findInt64("timeUs", &timeUs));
239 CHECK(response == mSeekReply && 0 != mSeekReplyID);
255 CHECK(msg->senderAwaitsResponse(&mDisconnectReplyID));
267 CHECK(msg->senderAwaitsResponse(&mSeekReplyID));
279 CHECK(msg->findInt32("what", &what));
289 CHECK(msg->findString("uri", &uri));
304 CHECK(mSeekReply != NULL);
315 CHECK(msg->findString("uri", &uri))
    [all...]
  /external/chromium_org/chrome/browser/net/
dns_probe_browsertest.cc 90 CHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
102 CHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
343 CHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
344 CHECK(io_thread);
345 CHECK(!io_thread_);
346 CHECK(!original_dns_probe_service_);
347 CHECK(!delaying_dns_probe_service_);
348 CHECK(!protocol_handler_);
371 CHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
388 CHECK(BrowserThread::CurrentlyOn(BrowserThread::IO))
    [all...]
  /external/v8/test/cctest/
test-accessors.cc 182 CHECK(value->BooleanValue());
188 CHECK(!value->BooleanValue());
194 CHECK(value->BooleanValue());
202 CHECK(!value->BooleanValue());
239 CHECK(info.This() == info.Holder());
240 CHECK(info.Data()->Equals(v8::String::New("data")));
242 CHECK(info.This() == info.Holder());
243 CHECK(info.Data()->Equals(v8::String::New("data")));
245 CHECK(info.This() == info.Holder());
246 CHECK(info.Data()->Equals(v8::String::New("data")))
    [all...]
test-lockers.cc 75 CHECK(v->IsNumber());
84 CHECK(v->IsNumber());
120 CHECK(v->IsNumber());
476 CHECK(v8::Locker::IsLocked(isolate1_));
477 CHECK(!v8::Locker::IsLocked(isolate2_));
488 CHECK(v8::Locker::IsLocked(isolate1_));
489 CHECK(v8::Locker::IsLocked(isolate2_));
501 CHECK(!v8::Locker::IsLocked(isolate1_));
502 CHECK(v8::Locker::IsLocked(isolate2_));
539 CHECK(v8::Locker::IsLocked(isolate_))
    [all...]
test-mark-compact.cc 104 CHECK(HEAP->InSpace(*array, NEW_SPACE));
110 CHECK(HEAP->InSpace(*array, OLD_POINTER_SPACE));
137 CHECK(HEAP->InSpace(*array, NEW_SPACE));
206 CHECK(Isolate::Current()->context()->global()->HasLocalProperty(func_name));
209 CHECK(func_value->IsJSFunction());
228 CHECK(Isolate::Current()->context()->global()->HasLocalProperty(obj_name));
229 CHECK(Isolate::Current()->context()->global()->
235 CHECK(obj->GetProperty(prop_name) == Smi::FromInt(23));
267 CHECK(HEAP->map_space()->MapPointersEncodable());
275 CHECK(gc_starts == gc_ends)
    [all...]

Completed in 457 milliseconds

<<21222324252627282930>>