Searched refs:handleEvent (Results 1 – 25 of 73) sorted by relevance
123
/external/webkit/WebCore/page/ |
D | Geolocation.cpp | 51 m_errorCallback->handleEvent(error.get()); in timerFired() 77 notifier->m_errorCallback->handleEvent(error.get()); in getCurrentPosition() 92 notifier->m_errorCallback->handleEvent(error.get()); in watchPosition() 134 notifier->m_errorCallback->handleEvent(error); in sendErrorToOneShots() 148 notifier->m_errorCallback->handleEvent(error); in sendErrorToWatchers() 164 notifier->m_successCallback->handleEvent(position, shouldCallErrorCallback); in sendPositionToOneShots() 184 notifier->m_successCallback->handleEvent(position, shouldCallErrorCallback); in sendPositionToWatchers()
|
D | PositionErrorCallback.h | 39 virtual void handleEvent(PositionError*) = 0;
|
D | PositionCallback.h | 39 virtual void handleEvent(Geoposition* position, bool& raisedException) = 0;
|
/external/webkit/WebCore/xml/ |
D | XMLHttpRequestUpload.cpp | 99 listenerIter->get()->handleEvent(evt.get(), false); in dispatchEvent() 111 listener->handleEvent(evt.get(), false); in dispatchXMLHttpRequestProgressEvent()
|
/external/webkit/WebCore/storage/ |
D | SQLStatement.cpp | 169 callbackError = m_statementErrorCallback->handleEvent(transaction, m_error.get()); in performCallback() 171 m_statementCallback->handleEvent(transaction, m_resultSet.get(), callbackError); in performCallback()
|
D | SQLTransactionErrorCallback.h | 41 virtual bool handleEvent(SQLError*) = 0;
|
D | SQLStatementErrorCallback.h | 42 virtual bool handleEvent(SQLTransaction*, SQLError*) = 0;
|
D | SQLTransactionCallback.h | 42 virtual void handleEvent(SQLTransaction*, bool& raisedException) = 0;
|
D | SQLStatementCallback.h | 41 virtual void handleEvent(SQLTransaction*, SQLResultSet*, bool& raisedException) = 0;
|
D | SQLTransaction.cpp | 247 m_callback->handleEvent(this, shouldDeliverErrorCallback); in deliverTransactionCallback() 452 m_successCallback->handleEvent(); in deliverSuccessCallback() 503 if (!m_errorCallback || m_errorCallback->handleEvent(m_transactionError.get())) in deliverTransactionErrorCallback()
|
/external/webkit/WebCore/dom/ |
D | MessagePort.cpp | 254 m_onMessageListener->handleEvent(evt.get(), false); in dispatchMessages() 280 m_onCloseListener->handleEvent(evt.get(), false); in dispatchCloseEvent() 333 listenerIter->get()->handleEvent(event.get(), false); in dispatchEvent()
|
D | Worker.cpp | 142 m_onErrorListener->handleEvent(evt.get(), true); in dispatchErrorEvent() 195 listenerIter->get()->handleEvent(event.get(), false); in dispatchEvent()
|
D | EventListener.h | 33 virtual void handleEvent(Event*, bool isWindowEvent = false) = 0;
|
/external/webkit/WebCore/html/ |
D | VoidCallback.h | 37 virtual void handleEvent() = 0;
|
/external/webkit/WebCore/bindings/objc/ |
D | ObjCEventListener.mm | 77 void ObjCEventListener::handleEvent(Event* event, bool) 79 [m_listener handleEvent:[DOMEvent _wrapEvent:event]];
|
D | ObjCEventListener.h | 48 virtual void handleEvent(Event*, bool isWindowEvent);
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
D | EventSendingController.h | 48 - (void)handleEvent:(DOMEvent *)event;
|
/external/webkit/WebCore/bindings/js/ |
D | JSCustomSQLTransactionCallback.h | 50 virtual void handleEvent(SQLTransaction*, bool& raisedException);
|
D | JSCustomVoidCallback.h | 49 virtual void handleEvent();
|
D | JSCustomSQLTransactionErrorCallback.h | 51 virtual bool handleEvent(SQLError*);
|
D | JSCustomPositionErrorCallback.h | 47 virtual void handleEvent(PositionError*);
|
D | JSCustomPositionCallback.h | 47 virtual void handleEvent(Geoposition*, bool& raisedException);
|
D | JSCustomSQLStatementCallback.h | 51 virtual void handleEvent(SQLTransaction*, SQLResultSet*, bool& raisedException);
|
D | JSCustomSQLStatementErrorCallback.h | 51 virtual bool handleEvent(SQLTransaction*, SQLError*);
|
/external/webkit/WebCore/loader/appcache/ |
D | DOMApplicationCache.cpp | 239 listenerIter->get()->handleEvent(event.get(), false); in dispatchEvent() 253 listener->handleEvent(event.get(), false); in callListener()
|
123