Lines Matching defs:exceptionState

36 IDBKeyRange* IDBKeyRange::fromScriptValue(ExecutionContext* context, const ScriptValue& value, ExceptionState& exceptionState)
47 exceptionState.throwDOMException(DataError, IDBDatabase::notValidKeyErrorMessage);
78 IDBKeyRange* IDBKeyRange::only(IDBKey* key, ExceptionState& exceptionState)
81 exceptionState.throwDOMException(DataError, IDBDatabase::notValidKeyErrorMessage);
88 IDBKeyRange* IDBKeyRange::only(ExecutionContext* context, const ScriptValue& keyValue, ExceptionState& exceptionState)
92 exceptionState.throwDOMException(DataError, IDBDatabase::notValidKeyErrorMessage);
99 IDBKeyRange* IDBKeyRange::lowerBound(ExecutionContext* context, const ScriptValue& boundValue, bool open, ExceptionState& exceptionState)
103 exceptionState.throwDOMException(DataError, IDBDatabase::notValidKeyErrorMessage);
110 IDBKeyRange* IDBKeyRange::upperBound(ExecutionContext* context, const ScriptValue& boundValue, bool open, ExceptionState& exceptionState)
114 exceptionState.throwDOMException(DataError, IDBDatabase::notValidKeyErrorMessage);
121 IDBKeyRange* IDBKeyRange::bound(ExecutionContext* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen, bool upperOpen, ExceptionState& exceptionState)
127 exceptionState.throwDOMException(DataError, IDBDatabase::notValidKeyErrorMessage);
131 exceptionState.throwDOMException(DataError, "The lower key is greater than the upper key.");
135 exceptionState.throwDOMException(DataError, "The lower key and upper key are equal and one of the bounds is open.");