OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:exceptioncode
(Results
1 - 25
of
254
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/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;
WebStorageQuotaCallbacksImpl.cpp
35
#include "core/dom/
ExceptionCode
.h"
73
m_errorCallback->handleEvent(DOMError::create(static_cast<
ExceptionCode
>(error)).get());
StorageErrorCallback.cpp
39
StorageErrorCallback::CallbackTask::CallbackTask(PassOwnPtr<StorageErrorCallback> callback,
ExceptionCode
ec)
/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
);
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)
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)
ExceptionCode.h
28
typedef int
ExceptionCode
;
NamedNodeMap.idl
39
// FIXME: the implementation does take an
exceptioncode
parameter.
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
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.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.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)
ExceptionStatePlaceholder.cpp
43
void NoExceptionStateAssertionChecker::throwDOMException(const
ExceptionCode
&, const String&)
/frameworks/av/media/libmediaplayerservice/
ActivityManager.cpp
43
int32_t
exceptionCode
= reply.readExceptionCode();
44
if (!
exceptionCode
) {
53
String8(uri).string(),
exceptionCode
);
/external/chromium_org/third_party/WebKit/public/web/
WebRange.h
70
BLINK_EXPORT WebNode startContainer(int&
exceptionCode
) const;
71
BLINK_EXPORT WebNode endContainer(int&
exceptionCode
) const;
WebExceptionCode.h
36
// This should match how
ExceptionCode
is defined in WebCore.
/external/chromium_org/third_party/WebKit/Source/core/xml/
XMLSerializer.cpp
26
#include "core/dom/
ExceptionCode
.h"
DOMParser.cpp
23
#include "core/dom/
ExceptionCode
.h"
/external/chromium_org/third_party/WebKit/Source/web/
WebRange.cpp
81
WebNode WebRange::startContainer(WebExceptionCode&
exceptionCode
) const
86
exceptionCode
= exceptionState.code();
90
WebNode WebRange::endContainer(WebExceptionCode&
exceptionCode
) const
95
exceptionCode
= exceptionState.code();
/external/chromium_org/chrome_frame/crash_reporting/
vectored_handler-impl.h
54
const DWORD
exceptionCode
= exceptionInfo->ExceptionRecord->
ExceptionCode
;
65
if ((
exceptionCode
& ERROR_SEVERITY_ERROR) != ERROR_SEVERITY_ERROR) {
72
if (
exceptionCode
& APPLICATION_ERROR_MASK) {
82
if (
exceptionCode
!= STATUS_STACK_OVERFLOW && api_->CheckForStackOverflow()) {
veh_test.cc
49
return (arg->ExceptionRecord->
ExceptionCode
== code);
/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/core/frame/
Navigator.h
39
typedef int
ExceptionCode
;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextGroup.h
41
typedef int
ExceptionCode
;
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DelayNode.cpp
33
#include "core/dom/
ExceptionCode
.h"
Completed in 384 milliseconds
1
2
3
4
5
6
7
8
9
10
11