OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IDBDatabaseException
(Results
1 - 24
of
24
) sorted by null
/external/webkit/Source/WebCore/storage/
IDBObjectStore.idl
36
raises (
IDBDatabaseException
);
38
raises (
IDBDatabaseException
);
40
raises (
IDBDatabaseException
);
42
raises (
IDBDatabaseException
);
44
raises (
IDBDatabaseException
);
46
raises (
IDBDatabaseException
);
48
raises (
IDBDatabaseException
);
50
raises (
IDBDatabaseException
);
52
raises (
IDBDatabaseException
);
IDBDatabaseException.h
35
class
IDBDatabaseException
: public ExceptionBase {
37
static PassRefPtr<
IDBDatabaseException
> create(const ExceptionCodeDescription& description)
39
return adoptRef(new
IDBDatabaseException
(description));
70
IDBDatabaseException
(const ExceptionCodeDescription& description)
IDBFactory.idl
32
raises (
IDBDatabaseException
);
IDBDatabaseError.h
29
#include "
IDBDatabaseException
.h"
42
ASSERT(code >=
IDBDatabaseException
::IDBDatabaseExceptionOffset);
43
ASSERT(code <
IDBDatabaseException
::IDBDatabaseExceptionMax);
44
return adoptRef(new IDBDatabaseError(code -
IDBDatabaseException
::IDBDatabaseExceptionOffset, message));
49
ASSERT(code <
IDBDatabaseException
::IDBDatabaseExceptionOffset);
IDBIndex.idl
37
raises (
IDBDatabaseException
);
39
raises (
IDBDatabaseException
);
41
raises (
IDBDatabaseException
);
43
raises (
IDBDatabaseException
);
IDBCursor.idl
42
raises (
IDBDatabaseException
);
44
raises (
IDBDatabaseException
);
46
raises (
IDBDatabaseException
);
IDBRequest.idl
36
getter raises (
IDBDatabaseException
);
38
getter raises (
IDBDatabaseException
);
40
getter raises (
IDBDatabaseException
);
IDBDatabase.idl
41
raises (
IDBDatabaseException
);
43
raises (
IDBDatabaseException
);
45
raises (
IDBDatabaseException
);
47
raises (
IDBDatabaseException
);
IDBObjectStoreBackendImpl.cpp
38
#include "
IDBDatabaseException
.h"
90
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
124
ec =
IDBDatabaseException
::READ_ONLY_ERR;
136
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
148
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::DATA_ERR, "A key was supplied for an objectStore that has a keyPath."));
171
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::DATA_ERR, "The generated key could not be inserted into the object using the keyPath."));
182
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::DATA_ERR, "The key could not be fetched from the keyPath."));
187
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::DATA_ERR, "The key fetched from the keyPath does not match the key of the cursor."));
195
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::DATA_ERR, "No key supplied"));
210
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::DATA_ERR, "NULL key is not allowed."))
[
all
...]
IDBDatabaseException.idl
31
]
IDBDatabaseException
{
IDBCursorBackendImpl.cpp
35
#include "
IDBDatabaseException
.h"
81
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
94
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
116
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
IDBDatabase.cpp
34
#include "
IDBDatabaseException
.h"
78
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
99
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
121
ec =
IDBDatabaseException
::CONSTRAINT_ERR;
125
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
IDBDatabaseBackendImpl.cpp
34
#include "
IDBDatabaseException
.h"
105
ec =
IDBDatabaseException
::CONSTRAINT_ERR;
116
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
146
ec =
IDBDatabaseException
::NOT_FOUND_ERR;
153
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
170
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::ABORT_ERR, "Connection was closed before set version transaction was created"));
189
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
199
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::UNKNOWN_ERR, "Error writing data to stable storage."));
210
ec =
IDBDatabaseException
::NOT_FOUND_ERR;
IDBIndexBackendImpl.cpp
36
#include "
IDBDatabaseException
.h"
110
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
120
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
129
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::NOT_FOUND_ERR, "Key does not exist in the index."));
136
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::NOT_FOUND_ERR, "Key does not exist in the index."));
149
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
158
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
IDBTransactionBackendImpl.cpp
33
#include "
IDBDatabaseException
.h"
66
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
72
ec =
IDBDatabaseException
::NOT_FOUND_ERR;
82
ec =
IDBDatabaseException
::NOT_FOUND_ERR;
IDBIndex.cpp
32
#include "
IDBDatabaseException
.h"
62
ec =
IDBDatabaseException
::CONSTRAINT_ERR;
80
ec =
IDBDatabaseException
::CONSTRAINT_ERR;
IDBCursor.cpp
106
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
IDBFactoryBackendImpl.cpp
34
#include "
IDBDatabaseException
.h"
97
callbacks->onError(IDBDatabaseError::create(
IDBDatabaseException
::UNKNOWN_ERR, "Internal error."));
IDBRequest.cpp
77
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
86
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
95
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
164
onError(IDBDatabaseError::create(
IDBDatabaseException
::ABORT_ERR, "The transaction was aborted, so the request cannot be fulfilled."));
IDBTransaction.cpp
35
#include "
IDBDatabaseException
.h"
87
ec =
IDBDatabaseException
::NOT_ALLOWED_ERR;
IDBObjectStore.cpp
33
#include "
IDBDatabaseException
.h"
155
ec =
IDBDatabaseException
::CONSTRAINT_ERR;
/external/webkit/Source/WebCore/dom/
ExceptionCode.cpp
30
#include "
IDBDatabaseException
.h"
326
} else if (code >=
IDBDatabaseException
::IDBDatabaseExceptionOffset && code <=
IDBDatabaseException
::IDBDatabaseExceptionMax) {
329
code -=
IDBDatabaseException
::IDBDatabaseExceptionOffset;
333
nameTableOffset =
IDBDatabaseException
::UNKNOWN_ERR;
/external/webkit/Source/WebCore/bindings/js/
JSDOMBinding.cpp
86
#include "
IDBDatabaseException
.h"
365
errorObject = toJS(exec, globalObject,
IDBDatabaseException
::create(description));
/external/webkit/Source/WebCore/bindings/v8/
V8Proxy.cpp
40
#include "
IDBDatabaseException
.h"
714
exception = toV8(
IDBDatabaseException
::create(description));
Completed in 447 milliseconds