HomeSort by relevance Sort by last modified time
    Searched refs:InvalidAccessError (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ExceptionCode.h 48 InvalidAccessError,
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 285 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
346 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
356 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
366 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
376 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
386 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
396 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
406 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
416 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
443 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
    [all...]
InternalSettings.cpp 41 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError); \
47 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError); \
53 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError); \
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLResultSet.cpp 49 // If the query didn't result in any rows being added, raise an InvalidAccessError exception
53 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.cpp 45 // 1. If keySystem is null or an empty string, throw an InvalidAccessError exception and abort these steps.
47 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
94 // InvalidAccessError exception and abort these steps.
96 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
MediaKeySession.cpp 117 // 1. If the first or second argument [sic] is null or an empty array, throw an InvalidAccessError.
120 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBuffer.cpp 165 // 3. If the new value is less than 0 or greater than or equal to appendWindowEnd then throw an InvalidAccessError
168 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
194 // 3. If the new value equals NaN, then throw an InvalidAccessError and abort these steps.
195 // 4. If the new value is less than or equal to appendWindowStart then throw an InvalidAccessError
198 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
212 // 1. If data is null then throw an InvalidAccessError exception and abort these steps.
214 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
225 // 1. If data is null then throw an InvalidAccessError exception and abort these steps.
227 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
277 // 1. If start is negative or greater than duration, then throw an InvalidAccessError exception and abort these steps
    [all...]
WebKitMediaSource.cpp 77 // 1. If type is null or an empty then throw an InvalidAccessError exception and
80 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
116 // 1. If sourceBuffer is null then throw an InvalidAccessError exception and
119 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
WebKitSourceBuffer.cpp 117 // 2. If data is null then throw an InvalidAccessError exception and abort these steps.
119 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
MediaSource.cpp 78 // 1. If type is null or an empty then throw an InvalidAccessError exception and
81 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
125 // 1. If sourceBuffer is null then throw an InvalidAccessError exception and
128 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
MediaSourceBase.cpp 154 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
211 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGMatrix.h 118 exceptionState.throwDOMException(InvalidAccessError, "Arguments cannot be zero.");
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.cpp 687 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
803 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
832 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
842 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
852 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
862 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
873 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.cpp 334 exceptionState.throwDOMException(InvalidAccessError, "Timeouts cannot be set for synchronous requests made from a document.");
352 exceptionState.throwDOMException(InvalidAccessError, "The response type can only be changed for asynchronous HTTP requests made from a document.");
554 exceptionState.throwDOMException(InvalidAccessError, "Synchronous requests are disabled for this page.");
563 exceptionState.throwDOMException(InvalidAccessError, "Synchronous HTTP requests from a document must not set a response type.");
569 exceptionState.throwDOMException(InvalidAccessError, "Synchronous requests must not set a timeout.");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.cpp 218 exceptionState.throwDOMException(InvalidAccessError, "The autoIncrement option was set but the keyPath option was empty or an array.");
267 exceptionState.throwDOMException(InvalidAccessError, "The storeNames parameter was empty.");
IDBObjectStore.cpp 410 exceptionState.throwDOMException(InvalidAccessError, "The keyPath argument was an array and the multiEntry option is true.");
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ShadowRoot.cpp 142 exceptionState.throwDOMException(InvalidAccessError, "The ShadowRoot does not have a host.");
  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceUserTiming.cpp 126 exceptionState.throwDOMException(InvalidAccessError, "'" + markName + "' is empty: either the event hasn't happened yet, or it would provide cross-origin timing information.");
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8WindowCustom.cpp 83 exceptionState.throwDOMException(InvalidAccessError, "No script context is available in which to execute the script.");
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocket.cpp 464 exceptionState.throwDOMException(InvalidAccessError, "The code must be either 1000, or between 3000 and 4999. " + String::number(code) + " is neither.");
  /external/chromium_org/third_party/WebKit/Source/web/
AssertMatchingEnums.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.cpp 167 exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
    [all...]

Completed in 836 milliseconds