Searched refs:sanitizedMessage (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | DOMException.cpp | 92 DOMException::DOMException(unsigned short code, const String& name, const String& sanitizedMessage,… in DOMException() argument 97 m_sanitizedMessage = sanitizedMessage; in DOMException() 101 …<DOMException> DOMException::create(ExceptionCode ec, const String& sanitizedMessage, const String… in create() argument 107 sanitizedMessage.isNull() ? String(entry->message) : sanitizedMessage, in create()
|
D | DOMException.h | 45 …efPtrWillBeRawPtr<DOMException> create(ExceptionCode, const String& sanitizedMessage = String(), c… 64 …DOMException(unsigned short m_code, const String& name, const String& sanitizedMessage, const Stri…
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | V8ThrowException.cpp | 47 v8::Handle<v8::Value> V8ThrowException::createDOMException(int ec, const String& sanitizedMessage, … in createDOMException() argument 55 return V8ThrowException::createGeneralError(sanitizedMessage, isolate); in createDOMException() 57 return V8ThrowException::createTypeError(sanitizedMessage, isolate); in createDOMException() 59 return V8ThrowException::createRangeError(sanitizedMessage, isolate); in createDOMException() 61 return V8ThrowException::createSyntaxError(sanitizedMessage, isolate); in createDOMException() 63 return V8ThrowException::createReferenceError(sanitizedMessage, isolate); in createDOMException() 65 …RefPtrWillBeRawPtr<DOMException> domException = DOMException::create(ec, sanitizedMessage, unsanit… in createDOMException() 80 v8::Handle<v8::Value> V8ThrowException::throwDOMException(int ec, const String& sanitizedMessage, c… in throwDOMException() argument 83 …v8::Handle<v8::Value> exception = createDOMException(ec, sanitizedMessage, unsanitizedMessage, cre… in throwDOMException()
|
D | ExceptionState.cpp | 68 void ExceptionState::throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMe… in throwSecurityError() argument 73 String finalSanitized = addExceptionContext(sanitizedMessage); in throwSecurityError() 127 void NonThrowableExceptionState::throwSecurityError(const String& sanitizedMessage, const String&) in throwSecurityError() argument 131 m_message = sanitizedMessage; in throwSecurityError() 153 void TrackExceptionState::throwSecurityError(const String& sanitizedMessage, const String&) in throwSecurityError() argument 156 m_message = sanitizedMessage; in throwSecurityError()
|
D | ExceptionState.h | 81 …virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage =… 134 …virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage =… 144 …virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage =…
|
D | ExceptionStatePlaceholder.h | 51 …virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage =… 64 …virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage =…
|
D | V8ThrowException.h | 40 …static v8::Handle<v8::Value> createDOMException(int, const String& sanitizedMessage, const String&… 46 …static v8::Handle<v8::Value> throwDOMException(int, const String& sanitizedMessage, const String& …
|