Home
last modified time | relevance | path

Searched refs:DOMError (Results 1 – 25 of 127) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/dom/
DDOMError.h39 class DOMError : public RefCountedWillBeGarbageCollectedFinalized<DOMError>, public ScriptWrappable…
42 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name) in create()
44 return adoptRefWillBeNoop(new DOMError(name)); in create()
46 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name, const String& message) in create()
48 return adoptRefWillBeNoop(new DOMError(name, message)); in create()
51 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec) in create()
53 …return adoptRefWillBeNoop(new DOMError(DOMException::getErrorName(ec), DOMException::getErrorMessa… in create()
56 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec, const String& message) in create()
58 return adoptRefWillBeNoop(new DOMError(DOMException::getErrorName(ec), message)); in create()
67 explicit DOMError(const String& name);
[all …]
DDOMError.cpp32 DOMError::DOMError(const String& name) in DOMError() function in blink::DOMError
37 DOMError::DOMError(const String& name, const String& message) in DOMError() function in blink::DOMError
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DDOMErrorHandlerImpl.java24 import org.w3c.dom.DOMError;
47 public boolean handleError(DOMError error) { in handleError()
50 if (error.getSeverity() == DOMError.SEVERITY_WARNING) { in handleError()
53 } else if (error.getSeverity() == DOMError.SEVERITY_ERROR) { in handleError()
55 } else if (error.getSeverity() == DOMError.SEVERITY_FATAL_ERROR) { in handleError()
DDOMErrorImpl.java24 import org.w3c.dom.DOMError;
35 public final class DOMErrorImpl implements DOMError {
40 private short fSeverity = DOMError.SEVERITY_WARNING;
168 fSeverity = DOMError.SEVERITY_WARNING; in reset()
DDOM3TreeWalker.java41 import org.w3c.dom.DOMError;
787 DOMError.SEVERITY_ERROR, msg, in serializeAttList()
945 DOMError.SEVERITY_WARNING,
966 DOMError.SEVERITY_ERROR,
1313 DOMError.SEVERITY_FATAL_ERROR, in isCommentWellFormed()
1329 DOMError.SEVERITY_FATAL_ERROR, in isCommentWellFormed()
1362 DOMError.SEVERITY_FATAL_ERROR, in isCommentWellFormed()
1378 DOMError.SEVERITY_FATAL_ERROR, in isCommentWellFormed()
1418 DOMError.SEVERITY_FATAL_ERROR, in isElementWellFormed()
1456 DOMError.SEVERITY_FATAL_ERROR, in isAttributeWellFormed()
[all …]
/external/chromium_org/third_party/WebKit/public/web/
DWebDOMError.h47 class DOMError; variable
72 explicit WebDOMError(const PassRefPtrWillBeRawPtr<DOMError>&);
73 WebDOMError& operator=(const PassRefPtrWillBeRawPtr<DOMError>&);
77 WebPrivatePtr<DOMError> m_private;
/external/chromium_org/third_party/WebKit/Source/web/
DWebIDBDatabaseError.cpp46 m_private = DOMError::create(code); in assign()
51 m_private = DOMError::create(code, message); in assign()
59 WebIDBDatabaseError::operator PassRefPtrWillBeRawPtr<DOMError>() const in operator PassRefPtrWillBeRawPtr<DOMError>()
DWebDOMError.cpp43 return WebDOMError(DOMError::create(name, message)); in create()
77 WebDOMError::WebDOMError(const PassRefPtrWillBeRawPtr<DOMError>& error) in WebDOMError()
82 WebDOMError& WebDOMError::operator=(const PassRefPtrWillBeRawPtr<DOMError>& error) in operator =()
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBTransaction.h44 class DOMError; variable
80 PassRefPtrWillBeRawPtr<DOMError> error() const { return m_error; } in error()
89 void setError(PassRefPtrWillBeRawPtr<DOMError>);
95 void onAbort(PassRefPtrWillBeRawPtr<DOMError>);
129 RefPtrWillBeMember<DOMError> m_error;
DIDBDatabaseCallbacks.h34 class DOMError; variable
47 virtual void onAbort(int64_t transactionId, PassRefPtrWillBeRawPtr<DOMError>);
DIDBTransactionTest.cpp91 virtual void onAbort(int64_t transactionId, PassRefPtrWillBeRawPtr<DOMError> error) OVERRIDE { } in onAbort()
120 transaction->onAbort(DOMError::create(AbortError, "Aborted")); in TEST_F()
156 db->onAbort(transactionId, DOMError::create(AbortError, "Aborted")); in TEST_F()
DIDBRequest.h70 PassRefPtrWillBeRawPtr<DOMError> error(ExceptionState&) const;
97 virtual void onError(PassRefPtrWillBeRawPtr<DOMError>);
152 RefPtrWillBeMember<DOMError> m_error;
DIDBFactory.cpp86 request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage)); in getDatabaseNames()
124 request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage)); in openInternal()
156 request->onError(DOMError::create(UnknownError, permissionDeniedErrorMessage)); in deleteDatabase()
DIDBRequestTest.cpp83 request->onError(DOMError::create(AbortError, "Description goes here.")); in TEST_F()
105 request->onError(DOMError::create(AbortError, "Description goes here.")); in TEST_F()
DIDBDatabase.h49 class DOMError; variable
91 void onAbort(int64_t, PassRefPtrWillBeRawPtr<DOMError>);
DIDBRequest.cpp118 PassRefPtrWillBeRawPtr<DOMError> IDBRequest::error(ExceptionState& exceptionState) const in error()
163 …onError(DOMError::create(AbortError, "The transaction was aborted, so the request cannot be fulfil… in abort()
242 void IDBRequest::onError(PassRefPtrWillBeRawPtr<DOMError> error) in onError()
513 … m_transaction->setError(DOMError::create(AbortError, "Uncaught exception in event handler.")); in uncaughtExceptionInEventHandler()
DIDBTransaction.cpp102 void IDBTransaction::setError(PassRefPtrWillBeRawPtr<DOMError> error) in setError()
214 void IDBTransaction::onAbort(PassRefPtrWillBeRawPtr<DOMError> prpError) in onAbort()
222 RefPtrWillBeRawPtr<DOMError> error = prpError; in onAbort()
/external/chromium_org/third_party/WebKit/public/platform/
DWebIDBDatabaseError.h38 class DOMError; variable
58 operator PassRefPtrWillBeRawPtr<DOMError>() const;
65 WebPrivatePtr<DOMError> m_private;
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
DMIDIErrorCallback.h38 class DOMError; variable
44 virtual void handleEvent(DOMError*) = 0;
DMIDIAccessInitializer.cpp53 reject(DOMError::create("SecurityError")); in start()
76 reject(DOMError::create(error, message)); in didStartSession()
85 reject(DOMError::create("SecurityError")); in resolveSysexPermission()
/external/chromium_org/third_party/WebKit/Source/modules/quota/
DStorageErrorCallback.h41 class DOMError; variable
49 virtual void handleEvent(DOMError*) = 0;
DStorageQuota.cpp92 resolver->reject(DOMError::create(NotSupportedError)); in queryInfo()
108 resolver->reject(DOMError::create(NotSupportedError)); in requestPersistentQuota()
DStorageErrorCallback.cpp49 m_callback->handleEvent(DOMError::create(m_ec).get()); in performTask()
DStorageQuotaCallbacksImpl.cpp61 m_resolver->reject(DOMError::create(static_cast<ExceptionCode>(error)).get()); in didFail()
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
DFileError.h44 class FileError : public DOMError {

123456