OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SQLExceptionOffset
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/storage/
SQLException.h
47
static const int
SQLExceptionOffset
= 1000;
51
UNKNOWN_ERR =
SQLExceptionOffset
,
52
DATABASE_ERR =
SQLExceptionOffset
+ 1,
53
VERSION_ERR =
SQLExceptionOffset
+ 2,
54
TOO_LARGE_ERR =
SQLExceptionOffset
+ 3,
55
QUOTA_ERR =
SQLExceptionOffset
+ 4,
56
SYNTAX_ERR =
SQLExceptionOffset
+ 5,
57
CONSTRAINT_ERR =
SQLExceptionOffset
+ 6,
58
TIMEOUT_ERR =
SQLExceptionOffset
+ 7
/external/webkit/Source/WebCore/dom/
ExceptionCode.cpp
306
} else if (code >= SQLException::
SQLExceptionOffset
&& code <= SQLException::SQLExceptionMax) {
309
code -= SQLException::
SQLExceptionOffset
;
Completed in 426 milliseconds