HomeSort by relevance Sort by last modified time
    Searched refs:ExceptionCode (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageErrorCallback.h 43 typedef int ExceptionCode;
53 static PassOwnPtr<CallbackTask> create(StorageErrorCallback* callback, ExceptionCode ec)
61 CallbackTask(StorageErrorCallback*, ExceptionCode);
64 ExceptionCode m_ec;
StorageErrorCallback.cpp 39 StorageErrorCallback::CallbackTask::CallbackTask(StorageErrorCallback* callback, ExceptionCode ec)
StorageQuotaCallbacksImpl.cpp 35 #include "core/dom/ExceptionCode.h"
61 m_resolver->reject(DOMError::create(static_cast<ExceptionCode>(error)).get());
DeprecatedStorageQuotaCallbacksImpl.cpp 35 #include "core/dom/ExceptionCode.h"
78 m_errorCallback->handleEvent(DOMError::create(static_cast<ExceptionCode>(error)).get());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMException.h 40 typedef int ExceptionCode;
45 static PassRefPtrWillBeRawPtr<DOMException> create(ExceptionCode, const String& sanitizedMessage = String(), const String& unsanitizedMessage = String());
58 static String getErrorName(ExceptionCode);
59 static String getErrorMessage(ExceptionCode);
DOMException.cpp 32 #include "core/dom/ExceptionCode.h"
84 static const CoreException* getErrorEntry(ExceptionCode ec)
101 PassRefPtrWillBeRawPtr<DOMException> DOMException::create(ExceptionCode ec, const String& sanitizedMessage, const String& unsanitizedMessage)
121 String DOMException::getErrorName(ExceptionCode ec)
131 String DOMException::getErrorMessage(ExceptionCode ec)
DOMError.h 31 #include "core/dom/ExceptionCode.h"
51 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec)
56 static PassRefPtrWillBeRawPtr<DOMError> create(ExceptionCode ec, const String& message)
ExceptionCode.h 28 typedef int ExceptionCode;
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
SimpleContentDecryptionModuleResult.h 8 #include "core/dom/ExceptionCode.h"
19 ExceptionCode WebCdmExceptionToExceptionCode(WebContentDecryptionModuleException);
41 void completeWithDOMException(ExceptionCode, const String& errorMessage);
SimpleContentDecryptionModuleResult.cpp 19 ExceptionCode WebCdmExceptionToExceptionCode(WebContentDecryptionModuleException cdmException)
65 void SimpleContentDecryptionModuleResult::completeWithError(WebContentDecryptionModuleException exceptionCode, unsigned long systemCode, const WebString& errorMessage)
67 completeWithDOMException(WebCdmExceptionToExceptionCode(exceptionCode), errorMessage);
75 void SimpleContentDecryptionModuleResult::completeWithDOMException(ExceptionCode code, const String& errorMessage)
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ExceptionState.h 43 typedef int ExceptionCode;
79 virtual void throwDOMException(const ExceptionCode&, const String& message);
87 ExceptionCode code() const { return m_code; }
111 ExceptionCode m_code;
132 virtual void throwDOMException(const ExceptionCode&, const String& message) OVERRIDE;
142 virtual void throwDOMException(const ExceptionCode&, const String& message) OVERRIDE;
ExceptionStatePlaceholder.cpp 43 void NoExceptionStateAssertionChecker::throwDOMException(const ExceptionCode&, const String&)
ExceptionStatePlaceholder.h 43 typedef int ExceptionCode;
49 virtual void throwDOMException(const ExceptionCode&, const String& message = String()) OVERRIDE { }
62 virtual void throwDOMException(const ExceptionCode&, const String& message = String()) OVERRIDE;
ExceptionState.cpp 36 #include "core/dom/ExceptionCode.h"
53 void ExceptionState::throwDOMException(const ExceptionCode& ec, const String& message)
113 void NonThrowableExceptionState::throwDOMException(const ExceptionCode& ec, const String& message)
141 void TrackExceptionState::throwDOMException(const ExceptionCode& ec, const String& message)
PrivateScriptRunner.js 44 // This list must be in sync with the enum in ExceptionCode.h. The order matters.
97 // This list must be in sync with the enum in ExceptionCode.h. The order matters.
  /external/chromium_org/testing/gtest/test/
gtest_break_on_failure_unittest_.cc 60 exit(exception_pointers->ExceptionRecord->ExceptionCode);
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
LockOrientationCallback.cpp 10 #include "core/dom/ExceptionCode.h"
31 ExceptionCode code = 0;
  /external/gtest/test/
gtest_break_on_failure_unittest_.cc 60 exit(exception_pointers->ExceptionRecord->ExceptionCode);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextGroup.h 44 typedef int ExceptionCode;
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
CryptoResultImpl.h 35 #include "core/dom/ExceptionCode.h"
44 ExceptionCode webCryptoErrorToExceptionCode(WebCryptoErrorType);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Navigator.h 42 typedef int ExceptionCode;
  /external/chromium_org/third_party/WebKit/Source/core/html/
ClassList.h 39 typedef int ExceptionCode;
  /external/chromium_org/base/win/
wrapped_window_proc_unittest.cc 43 if (info->ExceptionRecord->ExceptionCode == kExceptionCode)
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 266 static StringRef ExceptionCodeToString(DWORD ExceptionCode) {
267 switch(ExceptionCode) {
516 Exception.ExceptionRecord.ExceptionCode)
517 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n";
527 Exception.ExceptionRecord.ExceptionCode)
528 << " (" << Exception.ExceptionRecord.ExceptionCode
  /external/chromium_org/components/crash/app/
hard_error_handler_win.cc 102 long exception = ex_info->ExceptionRecord->ExceptionCode;

Completed in 514 milliseconds

1 2