HomeSort by relevance Sort by last modified time
    Searched defs:DOMError (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMError.cpp 27 #include "core/dom/DOMError.h"
32 DOMError::DOMError(const String& name)
38 DOMError::DOMError(const String& name, const String& message)
DOMError.h 39 class DOMError : public RefCountedWillBeGarbageCollectedFinalized<DOMError>, public ScriptWrappable {
41 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name)
43 return adoptRefWillBeNoop(new DOMError(name));
45 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name, const String& message)
47 return adoptRefWillBeNoop(new DOMError(name, message));
50 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec)
52 return adoptRefWillBeNoop(new DOMError(DOMException::getErrorName(ec), DOMException::getErrorMessage(ec)));
55 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec, const String& message)
57 return adoptRefWillBeNoop(new DOMError(DOMException::getErrorName(ec), message))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBDatabaseError.cpp 34 #include "core/dom/DOMError.h"
48 m_private = DOMError::create(code);
53 m_private = DOMError::create(code, message);
61 WebIDBDatabaseError::operator PassRefPtrWillBeRawPtr<DOMError>() const
  /libcore/luni/src/main/java/org/w3c/dom/
DOMError.java 16 * <code>DOMError</code> is an interface that describes an error.
20 public interface DOMError {
23 * The severity of the error described by the <code>DOMError</code> is
30 * The severity of the error described by the <code>DOMError</code> is
37 * The severity of the error described by the <code>DOMError</code> is
78 * The related <code>DOMError.type</code> dependent data if any.
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/8/
android.jar 

Completed in 509 milliseconds