Searched defs:DOMError (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMError.cpp27 #include "core/dom/DOMError.h"
32 DOMError::DOMError(const String& name) function in class:blink::DOMError
37 DOMError::DOMError(const String& name, const String& message) function in class:blink::DOMError
H A DDOMError.h39 class DOMError : public RefCountedWillBeGarbageCollectedFinalized<DOMError>, public ScriptWrappable { class in namespace:blink
42 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name)
44 return adoptRefWillBeNoop(new DOMError(name));
46 static PassRefPtrWillBeRawPtr<DOMError> create(const String& name, const String& message)
48 return adoptRefWillBeNoop(new DOMError(name, message));
51 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec)
53 return adoptRefWillBeNoop(new DOMError(DOMException::getErrorName(ec), DOMException::getErrorMessage(ec)));
56 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec, const String& message)
58 return adoptRefWillBeNoop(new DOMError(DOMExceptio
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebIDBDatabaseError.cpp34 #include "core/dom/DOMError.h"
46 m_private = DOMError::create(code);
51 m_private = DOMError::create(code, message);
59 WebIDBDatabaseError::operator PassRefPtrWillBeRawPtr<DOMError>() const
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 222 milliseconds