OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:throwError
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
Error.cpp
146
JSValue
throwError
(ExecState* exec, JSValue error)
152
JSObject*
throwError
(ExecState* exec, JSObject* error)
160
return
throwError
(exec, createTypeError(exec, "Type error"));
165
return
throwError
(exec, createSyntaxError(exec, "Syntax error"));
/external/webkit/Source/WebCore/bindings/v8/
V8Proxy.h
256
static v8::Handle<v8::Value>
throwError
(ErrorType, const char* message);
356
return
throwError
(V8Proxy::TypeError, "DOM object constructor cannot be called as a function.");
371
return
throwError
(V8Proxy::TypeError, "");
375
return
throwError
(V8Proxy::ReferenceError, "");
400
inline v8::Handle<v8::Primitive>
throwError
(const char* message, V8Proxy::ErrorType type = V8Proxy::TypeError)
403
V8Proxy::
throwError
(type, message);
407
inline v8::Handle<v8::Primitive>
throwError
(ExceptionCode ec)
414
inline v8::Handle<v8::Primitive>
throwError
(v8::Local<v8::Value> exception)
V8Proxy.cpp
725
v8::Handle<v8::Value> V8Proxy::
throwError
(ErrorType type, const char* message)
746
return
throwError
(TypeError, "Type error");
751
return
throwError
(SyntaxError, "Syntax error");
803
return
throwError
(TypeError, "Illegal constructor");
Completed in 395 milliseconds