HomeSort by relevance Sort by last modified time
    Searched defs:Abort (Results 26 - 50 of 91) sorted by null

12 3 4

  /external/chromium_org/ui/compositor/
layer_animation_sequence.cc 171 void LayerAnimationSequence::Abort(LayerAnimationDelegate* delegate) {
174 elements_[current_index]->Abort(delegate);
layer_animation_element.cc 731 void LayerAnimationElement::Abort(LayerAnimationDelegate* delegate) {
  /external/chromium_org/v8/src/
lithium-codegen.cc 216 void LCodeGenBase::Abort(BailoutReason reason) {
223 if (map->is_deprecated()) return Abort(kMapBecameDeprecated);
229 if (!map->is_stable()) return Abort(kMapBecameUnstable);
incremental-marking.cc 771 void IncrementalMarking::Abort() {
    [all...]
platform-posix.cc 250 void OS::Abort() {
254 // Redirect to std abort to signal abnormal program termination.
255 abort();
  /external/regex-re2/re2/testing/
unicode_test.py 72 def Abort():
73 raise AbortError("Abort")
116 self.assertRaises(unicode.InputError, StringTable, _UNICODE_TABLE, 4, Abort)
117 self.assertRaises(unicode.InputError, StringTable, _UNICODE_TABLE, 2, Abort)
118 self.assertRaises(unicode.InputError, StringTable, _BAD_TABLE1, 3, Abort)
119 self.assertRaises(unicode.InputError, StringTable, _BAD_TABLE2, 3, Abort)
120 self.assertRaises(unicode.InputError, StringTable, _BAD_TABLE3, 3, Abort)
  /art/runtime/
parsed_options.cc 253 hook_abort_ = NULL; // We don't call abort(3) by default; see Runtime::Abort.
539 } else if (option == "abort") {
542 Usage("abort was NULL\n");
714 void ParsedOptions::Abort() {
    [all...]
transaction.cc 119 void Transaction::Abort() {
280 // TODO We may want to abort a transaction while still being in transaction mode. In this case,
388 // TODO We may want to abort a transaction while still being in transaction mode. In this case,
runtime.cc 271 void Runtime::Abort() {
274 // Ensure that we don't have multiple threads trying to abort at once,
286 // Call the abort hook if we have one.
288 LOG(INTERNAL_FATAL) << "Calling abort hook...";
291 LOG(INTERNAL_FATAL) << "Unexpectedly returned from abort hook!";
295 // TODO: we ought to be able to use pthread_kill(3) here (or abort(3),
305 abort();
    [all...]
  /external/chromium_org/components/sync_driver/
data_type_manager_impl.cc 355 Abort(UNRECOVERABLE_ERROR, error);
471 // Ignore abort/unrecoverable error if we need to reconfigure anyways.
479 Abort(result.status, result.failed_data_types.size() >= 1 ?
532 void DataTypeManagerImpl::Abort(ConfigureStatus status,
  /external/chromium_org/content/renderer/media/
buffered_data_source.cc 176 void BufferedDataSource::Abort() {
  /external/chromium_org/sync/internal_api/
http_bridge.cc 263 // OnURLFetchComplete and Abort.
317 void HttpBridge::Abort() {
http_bridge_unittest.cc 64 static void Abort(HttpBridge* bridge) {
65 bridge->Abort();
313 TEST_F(SyncHttpBridgeTest, Abort) {
326 base::Bind(&SyncHttpBridgeTest::Abort, http_bridge));
345 http_bridge->Abort();
372 signal_when_created.Wait(); // Wait till we have a bridge to abort.
391 // Abort the fetch. This should be smart enough to handle the case where
393 bridge_for_race_test()->Abort();
401 // Abort should have held a reference.
466 bridge->Abort();
    [all...]
  /external/chromium_org/win8/metro_driver/
print_document_source.cc 78 void PrintDocumentSource::Abort() {
190 // If an abort occured, we'll get 0 and won't enter the loop below.
251 // A page_count of 0 means abort...
475 // A page count of 0 means abort.
  /external/chromium_org/content/browser/speech/
google_streaming_remote_engine.cc 233 // abort, so we just silently drop them here.
400 return Abort(SPEECH_RECOGNITION_ERROR_NO_SPEECH);
402 return Abort(SPEECH_RECOGNITION_ERROR_ABORTED);
404 return Abort(SPEECH_RECOGNITION_ERROR_AUDIO);
406 return Abort(SPEECH_RECOGNITION_ERROR_NETWORK);
409 return Abort(SPEECH_RECOGNITION_ERROR_ABORTED);
412 return Abort(SPEECH_RECOGNITION_ERROR_ABORTED);
414 return Abort(SPEECH_RECOGNITION_ERROR_BAD_GRAMMAR);
417 return Abort(SPEECH_RECOGNITION_ERROR_ABORTED);
504 return Abort(SPEECH_RECOGNITION_ERROR_NONE)
    [all...]
speech_recognizer_impl.cc 508 return Abort(SpeechRecognitionError(SPEECH_RECOGNITION_ERROR_AUDIO,
518 return Abort(SpeechRecognitionError(SPEECH_RECOGNITION_ERROR_AUDIO));
570 return Abort(SpeechRecognitionError(SPEECH_RECOGNITION_ERROR_AUDIO));
615 return Abort(SpeechRecognitionError(SPEECH_RECOGNITION_ERROR_NO_SPEECH));
646 return Abort(SpeechRecognitionError(SPEECH_RECOGNITION_ERROR_NONE));
652 return Abort(SpeechRecognitionError(SPEECH_RECOGNITION_ERROR_AUDIO));
654 return Abort(event_args.engine_error);
656 return Abort(SpeechRecognitionError(SPEECH_RECOGNITION_ERROR_ABORTED));
659 SpeechRecognizerImpl::FSMState SpeechRecognizerImpl::Abort(
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 407 virtual HRESULT __stdcall Abort(void) {}
  /external/chromium_org/media/filters/
pipeline_integration_test.cc 416 chunk_demuxer_->Abort(
467 void Abort() {
610 source.Abort();
700 source.Abort();
720 source.Abort();
737 source.Abort();
754 source.Abort();
771 source.Abort();
799 source.Abort();
824 source.Abort();
    [all...]
chunk_demuxer.cc 39 // TimeRanges object and abort these steps.
121 void Abort(TimeDelta append_window_start,
319 void SourceState::Abort(TimeDelta append_window_start,
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-death-test_test.cc 576 // Tests that EXPECT_DEATH doesn't abort the test on failure.
584 // Tests that ASSERT_DEATH does abort the test on failure.
687 abort();
692 // Tests that EXPECT_DEBUG_DEATH in debug mode does not abort
856 // The arguments to the calls to Abort since the last call to
890 virtual void Abort(AbortReason reason) {
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 229 void Abort() {
230 abort();
231 internal__exit(-1); // abort is not NORETURN on Windows.
284 // Abort immediately if we know printing is not possible.
  /external/gtest/test/
gtest-death-test_test.cc 576 // Tests that EXPECT_DEATH doesn't abort the test on failure.
584 // Tests that ASSERT_DEATH does abort the test on failure.
687 abort();
692 // Tests that EXPECT_DEBUG_DEATH in debug mode does not abort
856 // The arguments to the calls to Abort since the last call to
890 virtual void Abort(AbortReason reason) {
    [all...]
  /external/protobuf/gtest/test/
gtest-death-test_test.cc 512 // Tests that EXPECT_DEATH doesn't abort the test on failure.
520 // Tests that ASSERT_DEATH does abort the test on failure.
616 abort();
632 // Tests that EXPECT_DEBUG_DEATH in debug mode does not abort
759 // The arguments to the calls to Abort since the last call to
793 virtual void Abort(AbortReason reason) {
957 // This time there are two calls to Abort: one since the test didn't
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-death-test_test.cc 577 // Tests that EXPECT_DEATH doesn't abort the test on failure.
585 // Tests that ASSERT_DEATH does abort the test on failure.
688 abort();
693 // Tests that EXPECT_DEBUG_DEATH in debug mode does not abort
857 // The arguments to the calls to Abort since the last call to
891 virtual void Abort(AbortReason reason) {
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database.cc 303 transaction->Abort(error);
366 transaction->Abort(IndexedDBDatabaseError(
430 transaction->Abort(error);
458 // an abort, and so have disposed of the transaction. on_abort has already
466 void IndexedDBDatabase::Abort(int64 transaction_id) {
469 IDB_TRACE1("IndexedDBDatabase::Abort", "txn.id", transaction_id);
472 transaction->Abort();
475 void IndexedDBDatabase::Abort(int64 transaction_id,
477 IDB_TRACE1("IndexedDBDatabase::Abort(error)", "txn.id", transaction_id);
482 transaction->Abort(error)
    [all...]

Completed in 533 milliseconds

12 3 4