Searched defs:throwError (Results 1 - 4 of 4) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementProcessor.java279 * @param throwError True if it should throw an error if an
287 ElemTemplateElement target, boolean throwError)
295 || !throwError);
285 setPropertiesFromAttributes( StylesheetHandler handler, String rawName, Attributes attributes, ElemTemplateElement target, boolean throwError) argument
/external/webkit/Source/JavaScriptCore/runtime/
H A DError.cpp146 JSValue throwError(ExecState* exec, JSValue error) function in namespace:JSC
152 JSObject* throwError(ExecState* exec, JSObject* error) function in namespace:JSC
160 return throwError(exec, createTypeError(exec, "Type error"));
165 return throwError(exec, createSyntaxError(exec, "Syntax error"));
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Proxy.h248 static v8::Handle<v8::Value> throwError(ErrorType, const char* message);
348 return throwError(V8Proxy::TypeError, "DOM object constructor cannot be called as a function.");
363 return throwError(V8Proxy::TypeError, "");
367 return throwError(V8Proxy::ReferenceError, "");
392 inline v8::Handle<v8::Primitive> throwError(const char* message, V8Proxy::ErrorType type = V8Proxy::TypeError) function in namespace:WebCore
395 V8Proxy::throwError(type, message);
399 inline v8::Handle<v8::Primitive> throwError(ExceptionCode ec) function in namespace:WebCore
406 inline v8::Handle<v8::Primitive> throwError(v8::Local<v8::Value> exception) function in namespace:WebCore
H A DV8Proxy.cpp691 v8::Handle<v8::Value> V8Proxy::throwError(ErrorType type, const char* message) function in class:WebCore::V8Proxy
712 return throwError(TypeError, "Type error");
717 return throwError(SyntaxError, "Syntax error");
769 return throwError(TypeError, "Illegal constructor");

Completed in 144 milliseconds