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() 102 …<DOMException> DOMException::create(ExceptionCode ec, const String& sanitizedMessage, const String… in create() argument 108 sanitizedMessage.isNull() ? String(entry->message) : sanitizedMessage, in create()
|
D | DOMException.h | 44 …efPtrWillBeRawPtr<DOMException> create(ExceptionCode, const String& sanitizedMessage = String(), c… 63 …DOMException(unsigned short m_code, const String& name, const String& sanitizedMessage, const Stri…
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | ExceptionState.cpp | 61 void ExceptionState::throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMe… in throwSecurityError() argument 66 String finalSanitized = addExceptionContext(sanitizedMessage); in throwSecurityError() 112 void NonThrowableExceptionState::throwSecurityError(const String& sanitizedMessage, const String&) in throwSecurityError() argument 116 m_message = sanitizedMessage; in throwSecurityError() 131 void TrackExceptionState::throwSecurityError(const String& sanitizedMessage, const String&) in throwSecurityError() argument 134 m_message = sanitizedMessage; in throwSecurityError()
|
D | V8ThrowException.cpp | 47 v8::Handle<v8::Value> V8ThrowException::createDOMException(int ec, const String& sanitizedMessage, … in createDOMException() argument 56 return V8ThrowException::createTypeError(sanitizedMessage, isolate); in createDOMException() 58 …RefPtrWillBeRawPtr<DOMException> domException = DOMException::create(ec, sanitizedMessage, unsanit… in createDOMException() 73 v8::Handle<v8::Value> V8ThrowException::throwDOMException(int ec, const String& sanitizedMessage, c… in throwDOMException() argument 76 …v8::Handle<v8::Value> exception = createDOMException(ec, sanitizedMessage, unsanitizedMessage, cre… in throwDOMException()
|
D | ExceptionState.h | 79 …virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage =… 128 …virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage =… 137 …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 | 48 …static v8::Handle<v8::Value> createDOMException(int, const String& sanitizedMessage, const String&… 54 …static v8::Handle<v8::Value> throwDOMException(int, const String& sanitizedMessage, const String& …
|