Home
last modified time | relevance | path

Searched refs:sanitizedMessage (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DDOMException.cpp92 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()
DDOMException.h44 …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/
DExceptionState.cpp61 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()
DV8ThrowException.cpp47 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()
DExceptionState.h79 …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 =…
DExceptionStatePlaceholder.h51 …virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage =…
64 …virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage =…
DV8ThrowException.h48 …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& …