OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:V8ThrowException
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ThrowException.cpp
26
#include "bindings/v8/
V8ThrowException
.h"
47
v8::Handle<v8::Value>
V8ThrowException
::createDOMException(int ec, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
56
return
V8ThrowException
::createTypeError(sanitizedMessage, isolate);
73
v8::Handle<v8::Value>
V8ThrowException
::throwDOMException(int ec, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
80
return
V8ThrowException
::throwError(exception, isolate);
83
v8::Handle<v8::Value>
V8ThrowException
::createError(V8ErrorType type, const String& message, v8::Isolate* isolate)
102
v8::Handle<v8::Value>
V8ThrowException
::throwError(V8ErrorType type, const String& message, v8::Isolate* isolate)
104
v8::Handle<v8::Value> exception =
V8ThrowException
::createError(type, message, isolate);
107
return
V8ThrowException
::throwError(exception, isolate);
110
v8::Handle<v8::Value>
V8ThrowException
::createTypeError(const String& message, v8::Isolate* isolate
[
all
...]
ExceptionState.cpp
35
#include "bindings/v8/
V8ThrowException
.h"
56
setException(
V8ThrowException
::createDOMException(ec, processedMessage, m_creationContext, m_isolate));
65
setException(
V8ThrowException
::createDOMException(SecurityError, finalSanitized, finalUnsanitized, m_creationContext, m_isolate));
83
setException(
V8ThrowException
::createTypeError(addExceptionContext(message), m_isolate));
V8ThrowException.h
41
class
V8ThrowException
{
V8Binding.cpp
72
return
V8ThrowException
::throwDOMException(exceptionCode, v8::Handle<v8::Object>(), isolate);
77
return
V8ThrowException
::throwDOMException(exceptionCode, message, v8::Handle<v8::Object>(), isolate);
82
return
V8ThrowException
::throwError(errorType, message, isolate);
87
return
V8ThrowException
::throwError(exception, isolate);
92
return
V8ThrowException
::throwTypeError(String(), isolate);
97
return
V8ThrowException
::throwTypeError(message, isolate);
ExceptionState.h
35
#include "bindings/v8/
V8ThrowException
.h"
101
V8ThrowException
::throwError(m_exception.newLocal(m_isolate), m_isolate);
WorkerScriptController.cpp
250
throwError(
V8ThrowException
::createError(v8GeneralError, m_errorEventFromImportedScript->message(), isolate()), isolate());
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8PromiseCustom.cpp
677
v8::Local<v8::Value> reason =
V8ThrowException
::createTypeError("Resolve a promise with itself", isolate);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/
webcore_derived.target.darwin-arm.mk
256
third_party/WebKit/Source/bindings/v8/
V8ThrowException
.cpp \
webcore_derived.target.darwin-mips.mk
256
third_party/WebKit/Source/bindings/v8/
V8ThrowException
.cpp \
webcore_derived.target.darwin-x86.mk
256
third_party/WebKit/Source/bindings/v8/
V8ThrowException
.cpp \
webcore_derived.target.linux-arm.mk
256
third_party/WebKit/Source/bindings/v8/
V8ThrowException
.cpp \
webcore_derived.target.linux-mips.mk
256
third_party/WebKit/Source/bindings/v8/
V8ThrowException
.cpp \
webcore_derived.target.linux-x86.mk
256
third_party/WebKit/Source/bindings/v8/
V8ThrowException
.cpp \
/external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp
44
#include "bindings/v8/
V8ThrowException
.h"
274
V8ThrowException
::throwTypeError("value to observe is null or undefined", v8::Isolate::GetCurrent());
[
all
...]
Completed in 293 milliseconds