Home
last modified time | relevance | path

Searched refs:ErrorEvent (Results 1 – 25 of 1350) sorted by relevance

12345678910>>...54

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/events/
H A Derror_event.cc40 ErrorEvent* ErrorEvent::CreateSanitizedError(ScriptState* script_state) { in CreateSanitizedError()
45 return MakeGarbageCollected<ErrorEvent>( in CreateSanitizedError()
52 ErrorEvent::ErrorEvent() in ErrorEvent() function in blink::ErrorEvent
57 ErrorEvent::ErrorEvent(ScriptState* script_state, in ErrorEvent() function in blink::ErrorEvent
74 ErrorEvent::ErrorEvent(const String& message, in ErrorEvent() function in blink::ErrorEvent
86 void ErrorEvent::SetUnsanitizedMessage(const String& message) { in SetUnsanitizedMessage()
91 ErrorEvent::~ErrorEvent() = default;
93 const AtomicString& ErrorEvent::InterfaceName() const { in InterfaceName()
97 bool ErrorEvent::IsErrorEvent() const { in IsErrorEvent()
105 ScriptValue ErrorEvent::error(ScriptState* script_state) const { in error()
[all …]
H A Derror_event.h50 class CORE_EXPORT ErrorEvent final : public Event {
54 static ErrorEvent* Create() { return MakeGarbageCollected<ErrorEvent>(); } in Create()
55 static ErrorEvent* Create(const String& message, in Create()
62 static ErrorEvent* Create(const String& message, in Create()
70 static ErrorEvent* Create(ScriptState* script_state, in Create()
77 static ErrorEvent* CreateSanitizedError(ScriptState* script_state);
79 ErrorEvent();
80 ErrorEvent(const String& message,
84 ErrorEvent(ScriptState*, const AtomicString&, const ErrorEventInit*);
85 ~ErrorEvent() override;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/events/
H A Derror_event.cc40 ErrorEvent* ErrorEvent::CreateSanitizedError(ScriptState* script_state) { in CreateSanitizedError()
45 return MakeGarbageCollected<ErrorEvent>( in CreateSanitizedError()
52 ErrorEvent::ErrorEvent() in ErrorEvent() function in blink::ErrorEvent
57 ErrorEvent::ErrorEvent(ScriptState* script_state, in ErrorEvent() function in blink::ErrorEvent
83 ErrorEvent::ErrorEvent(const String& message, in ErrorEvent() function in blink::ErrorEvent
95 void ErrorEvent::SetUnsanitizedMessage(const String& message) { in SetUnsanitizedMessage()
100 ErrorEvent::~ErrorEvent() = default;
102 const AtomicString& ErrorEvent::InterfaceName() const { in InterfaceName()
106 bool ErrorEvent::IsErrorEvent() const { in IsErrorEvent()
114 ScriptValue ErrorEvent::error(ScriptState* script_state) const { in error()
[all …]
H A Derror_event.h50 class CORE_EXPORT ErrorEvent final : public Event {
54 static ErrorEvent* Create() { return MakeGarbageCollected<ErrorEvent>(); } in Create()
55 static ErrorEvent* Create(const String& message, in Create()
62 static ErrorEvent* Create(const String& message, in Create()
70 static ErrorEvent* Create(ScriptState* script_state, in Create()
77 static ErrorEvent* CreateSanitizedError(ScriptState* script_state);
79 ErrorEvent();
80 ErrorEvent(const String& message,
84 ErrorEvent(ScriptState*, const AtomicString&, const ErrorEventInit*);
85 ~ErrorEvent() override;
[all …]
/dports/textproc/py-pygments/Pygments-2.7.2/tests/examplefiles/
H A Das3_test2.as3 import flash.events.ErrorEvent;
8 * <code>ErrorEvent.ERROR</code> which is same as <code>flash.events.ErrorEvent.ERROR</code>.
9 * The only difference between <code>flash.events.ErrorEvent</code> and
10 …* <code>ru.dfls.events.ErrorEvent</code> is the capability of the latter to store the underlying c…
13 * @see flash.events.ErrorEvent
17 public class ErrorEvent extends flash.events.ErrorEvent {
19 public static var ERROR : String = flash.events.ErrorEvent.ERROR;
23 …public function ErrorEvent(type : String, bubbles : Boolean = false, cancelable : Boolean = false, function
38 …return formatToString("ErrorEvent", "type", "bubbles", "cancelable", "eventPhase", "text", "error"…
42 return new ru.dfls.events.ErrorEvent(type, bubbles, cancelable, text, error);
/dports/textproc/py-pygments-25/Pygments-2.5.2/tests/examplefiles/
H A Das3_test2.as3 import flash.events.ErrorEvent;
8 * <code>ErrorEvent.ERROR</code> which is same as <code>flash.events.ErrorEvent.ERROR</code>.
9 * The only difference between <code>flash.events.ErrorEvent</code> and
10 …* <code>ru.dfls.events.ErrorEvent</code> is the capability of the latter to store the underlying c…
13 * @see flash.events.ErrorEvent
17 public class ErrorEvent extends flash.events.ErrorEvent {
19 public static var ERROR : String = flash.events.ErrorEvent.ERROR;
23 …public function ErrorEvent(type : String, bubbles : Boolean = false, cancelable : Boolean = false, function
38 …return formatToString("ErrorEvent", "type", "bubbles", "cancelable", "eventPhase", "text", "error"…
42 return new ru.dfls.events.ErrorEvent(type, bubbles, cancelable, text, error);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/dom/
H A DErrorEvent.cpp39 ErrorEvent::ErrorEvent() in ErrorEvent() function in WebCore::ErrorEvent
43 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber) in ErrorEvent() function in WebCore::ErrorEvent
51 ErrorEvent::~ErrorEvent() in ~ErrorEvent()
55 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const St… in initErrorEvent()
67 bool ErrorEvent::isErrorEvent() const in isErrorEvent()
H A DErrorEvent.h39 class ErrorEvent : public Event {
41 static PassRefPtr<ErrorEvent> create() in create()
43 return adoptRef(new ErrorEvent); in create()
45 …static PassRefPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineN… in create()
47 return adoptRef(new ErrorEvent(message, fileName, lineNumber)); in create()
49 virtual ~ErrorEvent();
60 ErrorEvent();
61 ErrorEvent(const String& message, const String& fileName, unsigned lineNumber);
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/web-sys-0.3.55/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/web-sys-0.3.55/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/web-sys-0.3.55/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/web-sys-0.3.55/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/web-sys-0.3.53/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/devel/sccache/sccache-0.2.15/cargo-crates/web-sys-0.3.46/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/net/routinator/routinator-0.10.2/cargo-crates/web-sys-0.3.51/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/games/genact/genact-0.10.0/cargo-crates/web-sys-0.3.44/src/features/
H A Dgen_ErrorEvent.rs6 …# [ wasm_bindgen ( extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typesc…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/lang/gleam/gleam-0.18.2/cargo-crates/web-sys-0.3.55/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/net-im/fractal/fractal-4.4.0/vendor/web-sys/src/features/
H A Dgen_ErrorEvent.rs6 …# [ wasm_bindgen ( extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typesc…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/dns/doh-proxy/doh-proxy-0.9.2/cargo-crates/web-sys-0.3.53/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/web-sys-0.3.47/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/web-sys-0.3.55/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/web-sys-0.3.48/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/editors/kak-lsp/kak-lsp-11.1.0/cargo-crates/web-sys-0.3.54/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/web-sys/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument
/dports/www/ffsend/ffsend-ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98/cargo-crates/web-sys-0.3.55/src/features/
H A Dgen_ErrorEvent.rs6 …# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = ErrorEvent , typescri…
13 pub type ErrorEvent; typedef
20 pub fn message(this: &ErrorEvent) -> String; in message()
27 pub fn filename(this: &ErrorEvent) -> String; in filename()
34 pub fn lineno(this: &ErrorEvent) -> u32; in lineno()
41 pub fn colno(this: &ErrorEvent) -> u32; in colno()
48 pub fn error(this: &ErrorEvent) -> ::wasm_bindgen::JsValue; in error()
55 pub fn new(type_: &str) -> Result<ErrorEvent, JsValue>; in new() argument
66 ) -> Result<ErrorEvent, JsValue>; in new_with_event_init_dict() argument

12345678910>>...54