/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMURL.cpp | 47 exceptionState.throwDOMException(SyntaxError, "Invalid base URL"); 51 exceptionState.throwDOMException(SyntaxError, "Invalid URL");
|
DataTransferItemList.cpp | 68 exceptionState.throwDOMException(InvalidStateError, "The list is not writable."); 87 exceptionState.throwDOMException(NotSupportedError, "An item already exists for type '" + type + "'.");
|
CharacterData.cpp | 63 exceptionState.throwDOMException(IndexSizeError, "The offset " + String::number(offset) + " is greater than the node's length (" + String::number(length()) + ")."); 97 exceptionState.throwDOMException(IndexSizeError, "The offset " + String::number(offset) + " is greater than the node's length (" + String::number(length()) + ")."); 112 exceptionState.throwDOMException(IndexSizeError, "The offset " + String::number(offset) + " is greater than the node's length (" + String::number(length()) + ")."); 133 exceptionState.throwDOMException(IndexSizeError, "The offset " + String::number(offset) + " is greater than the node's length (" + String::number(length()) + ").");
|
MutationObserver.cpp | 77 exceptionState.throwDOMException(NotFoundError, "The provided node was null."); 118 exceptionState.throwDOMException(TypeError, "The options object may only set 'attributeOldValue' to true when 'attributes' is true or not present."); 122 exceptionState.throwDOMException(TypeError, "The options object may only set 'attributeFilter' when 'attributes' is true or not present."); 127 exceptionState.throwDOMException(TypeError, "The options object may only set 'characterDataOldValue' to true when 'characterData' is true or not present."); 132 exceptionState.throwDOMException(TypeError, "The options object must set at least one of 'attributes', 'characterData', or 'childList' to true.");
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
RTCSessionDescription.cpp | 56 exceptionState.throwDOMException(TypeMismatchError, constructIllegalTypeExceptionMessage(type)); 87 exceptionState.throwDOMException(TypeMismatchError, constructIllegalTypeExceptionMessage(type));
|
RTCDataChannel.cpp | 43 exceptionState.throwDOMException(InvalidStateError, "RTCDataChannel.readyState is not 'open'"); 48 exceptionState.throwDOMException(NetworkError, "Could not send data"); 53 exceptionState.throwDOMException(NotSupportedError, "Blob support not implemented yet"); 66 exceptionState.throwDOMException(NotSupportedError, "RTCDataChannel is not supported"); 169 exceptionState.throwDOMException(TypeMismatchError, "Unknown binary type : " + binaryType);
|
MediaStreamTrack.cpp | 128 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::failedToExecute("getSources", "MediaStreamTrack", "Functionality not implemented yet")); 137 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::failedToExecute("stop", "MediaStreamTrack", "Functionality not implemented yet"));
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBDatabase.cpp | 195 exceptionState.throwDOMException(InvalidStateError, IDBDatabase::notVersionChangeTransactionErrorMessage); 199 exceptionState.throwDOMException(TransactionInactiveError, IDBDatabase::transactionFinishedErrorMessage); 203 exceptionState.throwDOMException(TransactionInactiveError, IDBDatabase::transactionInactiveErrorMessage); 208 exceptionState.throwDOMException(ConstraintError, "An object store with the specified name already exists."); 213 exceptionState.throwDOMException(SyntaxError, "The keyPath option is not a valid key path."); 218 exceptionState.throwDOMException(InvalidAccessError, "The autoIncrement option was set but the keyPath option was empty or an array."); 239 exceptionState.throwDOMException(InvalidStateError, IDBDatabase::notVersionChangeTransactionErrorMessage); 243 exceptionState.throwDOMException(TransactionInactiveError, IDBDatabase::transactionFinishedErrorMessage); 247 exceptionState.throwDOMException(TransactionInactiveError, IDBDatabase::transactionInactiveErrorMessage); 253 exceptionState.throwDOMException(NotFoundError, "The specified object store was not found.") [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ExceptionState.h | 80 virtual void throwDOMException(const ExceptionCode&, const String& message); 84 // Please don't use these methods. Use ::throwDOMException and ::throwTypeError, and pass in a useful exception message. 85 virtual void throwUninformativeAndGenericDOMException(const ExceptionCode& ec) { throwDOMException(ec, String()); } 128 virtual void throwDOMException(const ExceptionCode&, const String& message) OVERRIDE FINAL;
|
ExceptionState.cpp | 46 void ExceptionState::throwDOMException(const ExceptionCode& ec, const String& message) 86 void TrackExceptionState::throwDOMException(const ExceptionCode& ec, const String& message)
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
FileError.cpp | 126 void FileError::throwDOMException(ExceptionState& exceptionState, ErrorCode code) 137 exceptionState.throwDOMException(errorCodeToExceptionCode(code), errorCodeToMessage(code));
|
/external/chromium_org/third_party/WebKit/Source/core/loader/appcache/ |
ApplicationCache.cpp | 74 exceptionState.throwDOMException(InvalidStateError, "there is no application cache to update."); 81 exceptionState.throwDOMException(InvalidStateError, "there is no newer application cache to swap to.");
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGMatrix.h | 110 exceptionState.throwDOMException(InvalidStateError, "The matrix is not invertible."); 118 exceptionState.throwDOMException(InvalidAccessError, "Arguments cannot be zero.");
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLMeterElement.cpp | 81 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::notAFiniteNumber(min)); 95 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::notAFiniteNumber(max)); 110 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::notAFiniteNumber(value)); 125 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::notAFiniteNumber(low)); 140 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::notAFiniteNumber(high)); 155 exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::notAFiniteNumber(optimum));
|
HTMLDialogElement.cpp | 110 exceptionState.throwDOMException(InvalidStateError, "The element does not have an 'open' attribute, and therefore cannot be closed."); 152 exceptionState.throwDOMException(InvalidStateError, "The element already has an 'open' attribute, and therefore cannot be opened modally."); 156 exceptionState.throwDOMException(InvalidStateError, "The element is not in a Document.");
|
HTMLMarqueeElement.cpp | 133 exceptionState.throwDOMException(IndexSizeError, "The provided value (" + String::number(scrollAmount) + ") is negative."); 148 exceptionState.throwDOMException(IndexSizeError, "The provided value (" + String::number(scrollDelay) + ") is negative."); 163 exceptionState.throwDOMException(IndexSizeError, "The provided value (" + String::number(loop) + ") is neither positive nor -1.");
|
HTMLTableRowElement.cpp | 120 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(index) + ") is outside the range [-1, " + String::number(numCells) + "]."); 148 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(index) + ") is outside the range [0, " + String::number(numCells) + ").");
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
DOMSelection.cpp | 202 exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is not a valid offset."); 221 exceptionState.throwDOMException(InvalidStateError, "there is no selection."); 236 exceptionState.throwDOMException(InvalidStateError, "there is no selection."); 256 exceptionState.throwDOMException(IndexSizeError, String::number(baseOffset) + " is not a valid base offset."); 261 exceptionState.throwDOMException(IndexSizeError, String::number(extentOffset) + " is not a valid extent offset."); 280 exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is not a valid offset."); 347 exceptionState.throwDOMException(TypeMismatchError, "The node provided is invalid."); 352 exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is not a valid offset."); 356 exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is larger than the given node's length."); 373 exceptionState.throwDOMException(IndexSizeError, String::number(index) + " is not a valid index.") [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
AudioContext.cpp | 96 exceptionState.throwDOMException( 302 exceptionState.throwDOMException( 306 exceptionState.throwDOMException( 313 exceptionState.throwDOMException( 317 exceptionState.throwDOMException( 333 exceptionState.throwDOMException( 341 exceptionState.throwDOMException( 353 exceptionState.throwDOMException( 377 exceptionState.throwDOMException( 388 exceptionState.throwDOMException( [all...] |
AudioScheduledSourceNode.cpp | 146 exceptionState.throwDOMException( 161 exceptionState.throwDOMException( 165 exceptionState.throwDOMException(
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLTransactionBackendSync.cpp | 80 exceptionState.throwDOMException(UnknownError, SQLError::unknownErrorMessage); 86 exceptionState.throwDOMException(VersionError, SQLError::versionErrorMessage); 135 exceptionState.throwDOMException(UnknownError, SQLError::unknownErrorMessage); 187 exceptionState.throwDOMException(UnknownError, SQLError::unknownErrorMessage); 200 exceptionState.throwDOMException(UnknownError, SQLError::unknownErrorMessage);
|
DatabaseSync.cpp | 97 exceptionState.throwDOMException(UnknownError, SQLError::unknownErrorMessage); 104 exceptionState.throwDOMException(VersionError, SQLError::versionErrorMessage); 118 exceptionState.throwDOMException(UnknownError, SQLError::unknownErrorMessage);
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemLiteralResult.java | 673 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, 692 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, 709 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, 726 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, 755 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, 963 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, 993 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, 1010 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, 1024 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, 1037 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
Key.cpp | 181 exceptionState.throwDOMException(NotSupportedError, "key.usages does not permit this operation"); 186 exceptionState.throwDOMException(NotSupportedError, "key.algorithm does not match that of operation"); 198 exceptionState.throwDOMException(NotSupportedError, "key.algorithm does not match that of operation (HMAC's hash differs)");
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/ |
TextTrack.cpp | 269 exceptionState.throwDOMException(NotFoundError, "The specified cue is not listed in the TextTrack's list of cues."); 275 exceptionState.throwDOMException(InvalidStateError, "Failed to remove the specified cue."); 343 exceptionState.throwDOMException(NotFoundError, "The specified region is not listed in the TextTrack's list of regions."); 348 exceptionState.throwDOMException(InvalidStateError, "Failed to remove the specified region.");
|