Home
last modified time | relevance | path

Searched refs:FileExceptionOffset (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/fileapi/
DFileException.h47 static const int FileExceptionOffset = 1100; variable
51 NOT_FOUND_ERR = FileExceptionOffset + 1,
52 SECURITY_ERR = FileExceptionOffset + 2,
53 ABORT_ERR = FileExceptionOffset + 3,
54 NOT_READABLE_ERR = FileExceptionOffset + 4,
55 ENCODING_ERR = FileExceptionOffset + 5,
56 NO_MODIFICATION_ALLOWED_ERR = FileExceptionOffset + 6,
57 INVALID_STATE_ERR = FileExceptionOffset + 7,
58 SYNTAX_ERR = FileExceptionOffset + 8,
59 INVALID_MODIFICATION_ERR = FileExceptionOffset + 9,
[all …]
/external/webkit/Source/WebCore/dom/
DExceptionCode.cpp316 …} else if (code >= FileException::FileExceptionOffset && code <= FileException::FileExceptionMax) { in getExceptionCodeDescription()
319 code -= FileException::FileExceptionOffset; in getExceptionCodeDescription()