Searched defs:abort (Results 26 - 50 of 93) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriter.cpp84 // Make sure we've actually got something to stop, and haven't already called abort().
120 // We must be waiting for an abort to complete, since m_readyState wasn't WRITING.
161 // We must be waiting for an abort to complete, since m_readyState wasn't WRITING.
169 void FileWriter::abort(ExceptionState& exceptionState) function in class:blink::FileWriter
202 // We could get an abort in the handler for this event. If we do, it's
299 fireEvent(EventTypeNames::abort);
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognition.cpp69 void SpeechRecognition::abort() function in class:blink::SpeechRecognition
74 m_controller->abort(this);
160 abort();
/external/chromium_org/third_party/WebKit/Source/web/
H A DSpeechRecognitionClientProxy.cpp70 void SpeechRecognitionClientProxy::abort(SpeechRecognition* recognition) function in class:blink::SpeechRecognitionClientProxy
72 m_recognizer->abort(WebSpeechRecognitionHandle(recognition), this);
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dshare_client.js167 ShareClient.prototype.abort = function() {
179 this.abort();
H A Dcws_container_client.js236 CWSContainerClient.prototype.abort = function() {
248 this.abort();
/external/valgrind/main/coregrind/m_demangle/
H A Dvg_libciface.h47 #define abort() vg_assert(0) macro
/external/ceres-solver/internal/ceres/
H A Dprogram_evaluator.h171 bool abort = false; local
176 #pragma omp flush(abort)
177 if (abort) {
216 abort = true;
217 // This ensures that the OpenMP threads have a consistent view of 'abort'. Do
220 #pragma omp flush(abort)
255 if (!abort) {
280 return !abort;
/external/chromium_org/content/browser/devtools/
H A Ddevtools_tracing_handler.cc204 void DevToolsTracingHandler::DisableRecording(bool abort) { argument
208 abort ? NULL : new DevToolsTraceSinkProxy(weak_factory_.GetWeakPtr()));
/external/chromium_org/content/child/indexed_db/
H A Dwebidbdatabase_impl.cc265 void WebIDBDatabaseImpl::abort(long long transaction_id) { function in class:content::WebIDBDatabaseImpl
/external/chromium_org/content/renderer/
H A Dspeech_recognition_dispatcher.cc95 void SpeechRecognitionDispatcher::abort( function in class:content::SpeechRecognitionDispatcher
98 // Ignore an |abort| issued without a matching |start|.
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_web_speech_recognizer.cc169 void MockWebSpeechRecognizer::abort( function in class:content::MockWebSpeechRecognizer
/external/chromium_org/remoting/webapp/
H A Dxhr_proxy.js67 remoting.XMLHttpRequestProxy.prototype.abort = function() {
/external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
H A DApplicationCacheHost.cpp261 void ApplicationCacheHost::abort() function in class:blink::ApplicationCacheHost
264 m_host->abort();
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBRequest.cpp145 void IDBRequest::abort() function in class:blink::IDBRequest
487 // Possibly abort the transaction. This must occur after unregistering (so this request
491 m_transaction->abort(IGNORE_EXCEPTION);
514 m_transaction->abort(IGNORE_EXCEPTION);
545 // Keep track of enqueued events in case we need to abort prior to dispatch,
H A DIDBTransaction.cpp108 // transaction abort.
178 void IDBTransaction::abort(ExceptionState& exceptionState) function in class:blink::IDBTransaction
193 request->abort();
197 backendDB()->abort(m_id);
234 request->abort();
248 enqueueEvent(Event::createBubble(EventTypeNames::abort));
343 ASSERT(event->type() == EventTypeNames::complete || event->type() == EventTypeNames::abort);
362 abort(IGNORE_EXCEPTION);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebApplicationCacheHost.h105 virtual void abort() { } function in class:blink::WebApplicationCacheHost
H A DWebIDBDatabase.h56 virtual void abort(long long transactionId) { BLINK_ASSERT_NOT_REACHED(); } function in class:blink::WebIDBDatabase
/external/chromium_org/third_party/skia/src/xml/
H A DSkJS.cpp17 void abort() { function
/external/chromium_org/ui/file_manager/image_loader/
H A Drequest.js225 AuthorizedXHR.prototype.abort = function() {
228 this.xhr_.abort();
439 this.xhr_.abort();
/external/clang/lib/ARCMigrate/
H A DInternals.h137 void abort() { function in class:clang::arcmt::Transaction
/external/e2fsprogs/lib/ss/
H A Dss_internal.h74 int abort; /* exit subsystem */ member in struct:_ss_data
/external/skia/src/xml/
H A DSkJS.cpp17 void abort() { function
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReader.cpp245 // The delayed abort task tidies up and advances to the DONE state.
344 void FileReader::abort() function in class:blink::FileReader
354 // Schedule to have the abort done later since abort() might be called from the event handler and we do not want the resource loading code to be in the stack.
371 fireEvent(EventTypeNames::abort);
412 // since any of the events could call abort(), which internally checks
413 // if we're still loading (therefore we need abort process) or not.
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
H A DSourceBuffer.cpp137 // an INVALID_STATE_ERR exception and abort these steps.
138 // 3. If the updating attribute equals true, then throw an INVALID_STATE_ERR exception and abort these steps.
147 // 5. If the append state equals PARSING_MEDIA_SEGMENT, then throw an INVALID_STATE_ERR and abort these steps.
165 // InvalidStateError exception and abort these steps.
186 // InvalidStateError exception and abort these steps.
187 // 3. If the updating attribute equals true, then throw an InvalidStateError exception and abort these steps.
196 // 5. If the append state equals PARSING_MEDIA_SEGMENT, then throw an INVALID_STATE_ERR and abort these steps.
217 // InvalidStateError exception and abort these steps.
218 // 2. If the updating attribute equals true, then throw an InvalidStateError exception and abort these steps.
223 // exception and abort thes
296 void SourceBuffer::abort(ExceptionState& exceptionState) function in class:blink::SourceBuffer
[all...]
/external/chromium_org/third_party/cython/src/Cython/Debugger/Tests/
H A Dtest_libcython_in_gdb.py181 gdb.execute("set args -c 'import os; os.abort()'") namespace
183 assert 'abort' in output.lower()

Completed in 789 milliseconds

1234