/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | DOMError.h | 39 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 …]
|
D | DOMError.cpp | 32 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/ |
D | DOMErrorHandlerImpl.java | 24 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()
|
D | DOMErrorImpl.java | 24 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()
|
D | DOM3TreeWalker.java | 41 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/ |
D | WebDOMError.h | 47 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/ |
D | WebIDBDatabaseError.cpp | 46 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>()
|
D | WebDOMError.cpp | 43 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/ |
D | IDBTransaction.h | 44 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;
|
D | IDBDatabaseCallbacks.h | 34 class DOMError; variable 47 virtual void onAbort(int64_t transactionId, PassRefPtrWillBeRawPtr<DOMError>);
|
D | IDBTransactionTest.cpp | 91 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()
|
D | IDBRequest.h | 70 PassRefPtrWillBeRawPtr<DOMError> error(ExceptionState&) const; 97 virtual void onError(PassRefPtrWillBeRawPtr<DOMError>); 152 RefPtrWillBeMember<DOMError> m_error;
|
D | IDBFactory.cpp | 86 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()
|
D | IDBRequestTest.cpp | 83 request->onError(DOMError::create(AbortError, "Description goes here.")); in TEST_F() 105 request->onError(DOMError::create(AbortError, "Description goes here.")); in TEST_F()
|
D | IDBDatabase.h | 49 class DOMError; variable 91 void onAbort(int64_t, PassRefPtrWillBeRawPtr<DOMError>);
|
D | IDBRequest.cpp | 118 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()
|
D | IDBTransaction.cpp | 102 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/ |
D | WebIDBDatabaseError.h | 38 class DOMError; variable 58 operator PassRefPtrWillBeRawPtr<DOMError>() const; 65 WebPrivatePtr<DOMError> m_private;
|
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
D | MIDIErrorCallback.h | 38 class DOMError; variable 44 virtual void handleEvent(DOMError*) = 0;
|
D | MIDIAccessInitializer.cpp | 53 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/ |
D | StorageErrorCallback.h | 41 class DOMError; variable 49 virtual void handleEvent(DOMError*) = 0;
|
D | StorageQuota.cpp | 92 resolver->reject(DOMError::create(NotSupportedError)); in queryInfo() 108 resolver->reject(DOMError::create(NotSupportedError)); in requestPersistentQuota()
|
D | StorageErrorCallback.cpp | 49 m_callback->handleEvent(DOMError::create(m_ec).get()); in performTask()
|
D | StorageQuotaCallbacksImpl.cpp | 61 m_resolver->reject(DOMError::create(static_cast<ExceptionCode>(error)).get()); in didFail()
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
D | FileError.h | 44 class FileError : public DOMError {
|