OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EventException
(Results
1 - 25
of
50
) sorted by null
1
2
/external/webkit/Source/WebCore/dom/
EventException.h
36
class
EventException
: public ExceptionBase {
38
static PassRefPtr<
EventException
> create(const ExceptionCodeDescription& description)
40
return adoptRef(new
EventException
(description));
51
EventException
(const ExceptionCodeDescription& description)
EventException.idl
35
]
EventException
{
EventTarget.idl
36
raises(
EventException
);
MessagePort.idl
53
raises(
EventException
);
ExceptionCode.cpp
29
#include "
EventException
.h"
267
} else if (code >=
EventException
::EventExceptionOffset && code <=
EventException
::EventExceptionMax) {
270
code -=
EventException
::EventExceptionOffset;
274
nameTableOffset =
EventException
::UNSPECIFIED_EVENT_TYPE_ERR;
/packages/apps/Mms/src/org/w3c/dom/events/
EventException.java
16
* Event operations may throw an <code>
EventException
</code> as specified in
21
public class
EventException
extends RuntimeException {
22
public
EventException
(short code, String message) {
EventTarget.java
92
* @exception
EventException
100
throws
EventException
;
/packages/apps/Mms/src/com/android/mms/dom/events/
EventTargetImpl.java
23
import org.w3c.dom.events.
EventException
;
66
public boolean dispatchEvent(Event evt) throws
EventException
{
71
throw new
EventException
(
EventException
.UNSPECIFIED_EVENT_TYPE_ERR,
74
throw new
EventException
(
EventException
.UNSPECIFIED_EVENT_TYPE_ERR,
/external/webkit/Source/WebCore/workers/
AbstractWorker.idl
48
raises(
EventException
);
/external/webkit/Source/WebCore/notifications/
Notification.idl
57
raises(
EventException
);
/external/webkit/Source/WebCore/page/
EventSource.idl
66
raises(
EventException
);
/external/webkit/Source/WebCore/xml/
XMLHttpRequestUpload.idl
52
raises(
EventException
);
/external/webkit/Source/WebCore/bindings/js/
JSExceptionBase.cpp
52
if (
EventException
*
eventException
= toEventException(value))
53
return reinterpret_cast<ExceptionBase*>(
eventException
);
/external/webkit/Source/WebCore/loader/appcache/
DOMApplicationCache.idl
66
raises(
EventException
);
/external/webkit/Source/WebCore/storage/
IDBRequest.idl
61
raises(
EventException
);
IDBDatabase.idl
58
raises(
EventException
);
/external/webkit/Source/WebCore/websockets/
WebSocket.idl
70
raises(
EventException
);
/external/webkit/LayoutTests/dom/html/level2/events/
dispatchEvent02.js
79
UNSPECIFIED_EVENT_TYPE_ERR
EventException
.
83
* @see http://www.w3.org/TR/DOM-Level-2-Events/events#xpointer(id('Events-EventTarget-dispatchEvent')/raises/exception[@name='
EventException
']/descr/p[substring-before(.,':')='UNSPECIFIED_EVENT_TYPE_ERR'])
dispatchEvent03.js
80
UNSPECIFIED_EVENT_TYPE_ERR
EventException
.
84
* @see http://www.w3.org/TR/DOM-Level-2-Events/events#xpointer(id('Events-EventTarget-dispatchEvent')/raises/exception[@name='
EventException
']/descr/p[substring-before(.,':')='UNSPECIFIED_EVENT_TYPE_ERR'])
dispatchEvent04.js
80
UNSPECIFIED_EVENT_TYPE_ERR
EventException
.
84
* @see http://www.w3.org/TR/DOM-Level-2-Events/events#xpointer(id('Events-EventTarget-dispatchEvent')/raises/exception[@name='
EventException
']/descr/p[substring-before(.,':')='UNSPECIFIED_EVENT_TYPE_ERR'])
dispatchEvent05.js
80
UNSPECIFIED_EVENT_TYPE_ERR
EventException
.
84
* @see http://www.w3.org/TR/DOM-Level-2-Events/events#xpointer(id('Events-EventTarget-dispatchEvent')/raises/exception[@name='
EventException
']/descr/p[substring-before(.,':')='UNSPECIFIED_EVENT_TYPE_ERR'])
dispatchEvent06.js
80
UNSPECIFIED_EVENT_TYPE_ERR
EventException
.
84
* @see http://www.w3.org/TR/DOM-Level-2-Events/events#xpointer(id('Events-EventTarget-dispatchEvent')/raises/exception[@name='
EventException
']/descr/p[substring-before(.,':')='UNSPECIFIED_EVENT_TYPE_ERR'])
dispatchEvent07.js
79
UNSPECIFIED_EVENT_TYPE_ERR
EventException
.
83
* @see http://www.w3.org/TR/DOM-Level-2-Events/events#xpointer(id('Events-EventTarget-dispatchEvent')/raises/exception[@name='
EventException
']/descr/p[substring-before(.,':')='UNSPECIFIED_EVENT_TYPE_ERR'])
/external/webkit/LayoutTests/dom/xhtml/level2/events/
dispatchEvent02.js
79
UNSPECIFIED_EVENT_TYPE_ERR
EventException
.
83
* @see http://www.w3.org/TR/DOM-Level-2-Events/events#xpointer(id('Events-EventTarget-dispatchEvent')/raises/exception[@name='
EventException
']/descr/p[substring-before(.,':')='UNSPECIFIED_EVENT_TYPE_ERR'])
dispatchEvent03.js
80
UNSPECIFIED_EVENT_TYPE_ERR
EventException
.
84
* @see http://www.w3.org/TR/DOM-Level-2-Events/events#xpointer(id('Events-EventTarget-dispatchEvent')/raises/exception[@name='
EventException
']/descr/p[substring-before(.,':')='UNSPECIFIED_EVENT_TYPE_ERR'])
Completed in 250 milliseconds
1
2