OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExceptionCode
(Results
1 - 25
of
46
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageErrorCallback.h
43
typedef int
ExceptionCode
;
52
static PassOwnPtr<CallbackTask> create(PassOwnPtr<StorageErrorCallback> callback,
ExceptionCode
ec)
60
CallbackTask(PassOwnPtr<StorageErrorCallback>,
ExceptionCode
);
63
ExceptionCode
m_ec;
StorageErrorCallback.cpp
39
StorageErrorCallback::CallbackTask::CallbackTask(PassOwnPtr<StorageErrorCallback> callback,
ExceptionCode
ec)
WebStorageQuotaCallbacksImpl.cpp
35
#include "core/dom/
ExceptionCode
.h"
73
m_errorCallback->handleEvent(DOMError::create(static_cast<
ExceptionCode
>(error)).get());
/external/chromium_org/third_party/WebKit/Source/core/dom/
DOMException.h
39
typedef int
ExceptionCode
;
43
static PassRefPtr<DOMException> create(
ExceptionCode
, const String& sanitizedMessage = String(), const String& unsanitizedMessage = String());
56
static String getErrorName(
ExceptionCode
);
57
static String getErrorMessage(
ExceptionCode
);
58
static unsigned short getLegacyErrorCode(
ExceptionCode
);
DOMException.cpp
32
#include "
ExceptionCode
.h"
81
static const CoreException* getErrorEntry(
ExceptionCode
ec)
99
PassRefPtr<DOMException> DOMException::create(
ExceptionCode
ec, const String& sanitizedMessage, const String& unsanitizedMessage)
119
String DOMException::getErrorName(
ExceptionCode
ec)
129
String DOMException::getErrorMessage(
ExceptionCode
ec)
139
unsigned short DOMException::getLegacyErrorCode(
ExceptionCode
ec)
DOMError.h
31
#include "core/dom/
ExceptionCode
.h"
49
static PassRefPtr<DOMError> create(
ExceptionCode
ec)
54
static PassRefPtr<DOMError> create(
ExceptionCode
ec, const String& message)
ExceptionCode.h
28
typedef int
ExceptionCode
;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionStatePlaceholder.h
42
typedef int
ExceptionCode
;
48
virtual void throwDOMException(const
ExceptionCode
&, const String& message = String()) OVERRIDE FINAL { };
65
virtual void throwDOMException(const
ExceptionCode
&, const String& message = String()) OVERRIDE FINAL;
ExceptionState.h
42
typedef int
ExceptionCode
;
80
virtual void throwDOMException(const
ExceptionCode
&, const String& message);
85
virtual void throwUninformativeAndGenericDOMException(const
ExceptionCode
& ec) { throwDOMException(ec, String()); }
91
ExceptionCode
code() const { return m_code; }
110
ExceptionCode
m_code;
128
virtual void throwDOMException(const
ExceptionCode
&, const String& message) OVERRIDE FINAL;
ExceptionStatePlaceholder.cpp
43
void NoExceptionStateAssertionChecker::throwDOMException(const
ExceptionCode
&, const String&)
ExceptionState.cpp
36
#include "core/dom/
ExceptionCode
.h"
46
void ExceptionState::throwDOMException(const
ExceptionCode
& ec, const String& message)
86
void TrackExceptionState::throwDOMException(const
ExceptionCode
& ec, const String& message)
/external/chromium/testing/gtest/test/
gtest_break_on_failure_unittest_.cc
60
exit(exception_pointers->ExceptionRecord->
ExceptionCode
);
/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/core/html/canvas/
WebGLContextGroup.h
41
typedef int
ExceptionCode
;
/external/gtest/test/
gtest_break_on_failure_unittest_.cc
60
exit(exception_pointers->ExceptionRecord->
ExceptionCode
);
/ndk/sources/third_party/googletest/googletest/test/
gtest_break_on_failure_unittest_.cc
60
exit(exception_pointers->ExceptionRecord->
ExceptionCode
);
/external/chromium_org/third_party/WebKit/Source/core/frame/
Navigator.h
39
typedef int
ExceptionCode
;
/external/chromium_org/third_party/WebKit/Source/core/html/
ClassList.h
39
typedef int
ExceptionCode
;
/external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.h
54
typedef int
ExceptionCode
;
210
void handleRequestError(
ExceptionCode
, const AtomicString&, long long, long long);
258
ExceptionCode
m_exceptionCode;
/external/chromium/base/win/
wrapped_window_proc_unittest.cc
43
if (info->ExceptionRecord->
ExceptionCode
== kExceptionCode)
/external/chromium_org/base/win/
wrapped_window_proc_unittest.cc
43
if (info->ExceptionRecord->
ExceptionCode
== kExceptionCode)
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseManager.h
50
typedef int
ExceptionCode
;
/external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp
262
static StringRef ExceptionCodeToString(DWORD
ExceptionCode
) {
263
switch(
ExceptionCode
) {
511
Exception.ExceptionRecord.
ExceptionCode
)
512
<< " (" << Exception.ExceptionRecord.
ExceptionCode
<< ")\n";
522
Exception.ExceptionRecord.
ExceptionCode
)
523
<< " (" << Exception.ExceptionRecord.
ExceptionCode
/external/chromium_org/chrome_frame/crash_reporting/
veh_test.cc
49
return (arg->ExceptionRecord->
ExceptionCode
== code);
veh_test.h
49
er_.
ExceptionCode
= code;
Completed in 275 milliseconds
1
2