Home | History | Annotate | Download | only in v8

Lines Matching refs:Isolate

44     static v8::Handle<v8::Value> createDOMException(int ec, v8::Isolate* isolate)
46 return createDOMException(ec, String(), isolate);
48 static v8::Handle<v8::Value> createDOMException(int, const String&, v8::Isolate*);
50 static v8::Handle<v8::Value> throwDOMException(int ec, v8::Isolate* isolate)
52 return throwDOMException(ec, String(), isolate);
54 static v8::Handle<v8::Value> throwDOMException(int, const String&, v8::Isolate*);
56 static v8::Handle<v8::Value> createError(V8ErrorType, const String&, v8::Isolate*);
57 static v8::Handle<v8::Value> throwError(V8ErrorType, const String&, v8::Isolate*);
60 static v8::Handle<v8::Value> createTypeError(const String&, v8::Isolate*);
61 static v8::Handle<v8::Value> throwTypeError(const String&, v8::Isolate*);
63 static v8::Handle<v8::Value> throwNotEnoughArgumentsError(v8::Isolate*);