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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ExceptionCode.h 39 NotFoundError,
NamedNodeMap.cpp 64 exceptionState.throwDOMException(NotFoundError, "No item with name '" + name + "' was found.");
74 exceptionState.throwDOMException(NotFoundError, "No item with name '" + namespaceURI + "::" + localName + "' was found.");
83 exceptionState.throwDOMException(NotFoundError, "The node provided was null.");
ContainerNode.cpp 126 // Not mentioned in spec: throw NotFoundError if newChild is null
128 exceptionState.throwDOMException(NotFoundError, "The new child element is null.");
199 // NotFoundError: Raised if refChild is not a child of this node
201 exceptionState.throwDOMException(NotFoundError, "The node before which the new node is to be inserted is not a child of this node.");
325 exceptionState.throwDOMException(NotFoundError, "The node to be replaced is null.");
333 // NotFoundError: Raised if oldChild is not a child of this node.
335 exceptionState.throwDOMException(NotFoundError, "The node to be replaced is not a child of this node.");
448 // NotFoundError: Raised if oldChild is not a child of this node.
453 exceptionState.throwDOMException(NotFoundError, "The node to be removed is not a child of this node.");
467 exceptionState.throwDOMException(NotFoundError, "The node to be removed is no longer a child of this node. Perhaps it was moved in a 'blur' event (…)
    [all...]
Range.cpp 160 exceptionState.throwDOMException(NotFoundError, "The node provided was null.");
183 exceptionState.throwDOMException(NotFoundError, "The node provided was null.");
289 exceptionState.throwDOMException(NotFoundError, "The node provided was null.");
309 exceptionState.throwDOMException(NotFoundError, "The provided node has no parent.");
327 exceptionState.throwDOMException(NotFoundError, "The source range provided was null.");
485 exceptionState.throwDOMException(NotFoundError, "The node provided is null.");
500 exceptionState.throwDOMException(NotFoundError, "The node provided has no parent.");
825 exceptionState.throwDOMException(NotFoundError, "The node provided is null.");
    [all...]
MutationObserver.cpp 83 exceptionState.throwDOMException(NotFoundError, "The provided node was null.");
Element.cpp     [all...]
Node.cpp 486 exceptionState.throwDOMException(NotFoundError, "This node type does not support this method.");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderSync.cpp 52 exceptionState.throwDOMException(NotFoundError, FileError::notFoundErrorMessage);
65 exceptionState.throwDOMException(NotFoundError, FileError::notFoundErrorMessage);
77 exceptionState.throwDOMException(NotFoundError, FileError::notFoundErrorMessage);
90 exceptionState.throwDOMException(NotFoundError, FileError::notFoundErrorMessage);
FileError.cpp 59 return NotFoundError;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerError.cpp 58 return DOMException::create(NotFoundError, "The specified Service Worker resource was not found.");
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
errors.py 27 'NotFoundError',
65 class NotFoundError(FatalError):
109 NotFoundError: if an object that's expected to exist doesn't.
129 raise NotFoundError(msg)
  /external/chromium_org/chrome/test/ispy/common/
ispy_utils.py 98 cloud_bucket.NotFoundError: if the path to the image is not valid.
143 cloud_bucket.NotFoundError: if the given expectation is not found.
176 cloud_bucket.NotFoundError: if the test is not found in GS.
279 cloud_bucket.NotFoundError: if the result is not found in GS.
  /external/chromium_org/chrome/test/ispy/server/
gs_bucket.py 61 except cloudstorage.NotFoundError:
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.cpp 266 // object's text track's text track list of cues, then throw a NotFoundError exception.
268 exceptionState.throwDOMException(NotFoundError, "The specified cue is not listed in the TextTrack's list of cues.");
340 // object's text track list of regions, then throw a NotFoundError exception.
342 exceptionState.throwDOMException(NotFoundError, "The specified region is not listed in the TextTrack's list of regions.");
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleSheet.cpp 578 exceptionState.throwDOMException(NotFoundError, "The parent style sheet's data hasn't been processed.");
591 exceptionState.throwDOMException(NotFoundError, "The property '" + propertyText + "' could not be set.");
598 exceptionState.throwDOMException(NotFoundError, "The property '" + propertyText + "' could not be set.");
    [all...]
  /external/chromium_org/content/browser/fileapi/
file_system_operation_runner_unittest.cc 75 TEST_F(FileSystemOperationRunnerTest, NotFoundError) {
  /external/chromium_org/content/test/gpu/gpu_tests/
pixel.py 88 except cloud_storage.NotFoundError as e:
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBTransaction.cpp 149 exceptionState.throwDOMException(NotFoundError, IDBDatabase::noSuchObjectStoreErrorMessage);
156 exceptionState.throwDOMException(NotFoundError, IDBDatabase::noSuchObjectStoreErrorMessage);
IDBDatabase.cpp 285 exceptionState.throwDOMException(NotFoundError, "The specified object store was not found.");
326 exceptionState.throwDOMException(NotFoundError, "One of the specified object stores was not found.");
IDBObjectStore.cpp 480 exceptionState.throwDOMException(NotFoundError, IDBDatabase::noSuchIndexErrorMessage);
520 exceptionState.throwDOMException(NotFoundError, IDBDatabase::noSuchIndexErrorMessage);
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaList.cpp 222 exceptionState.throwDOMException(NotFoundError, "Failed to delete '" + medium + "'.");
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
MediaSource.cpp 169 // throw a NotFoundError exception and abort these steps.
171 exceptionState.throwDOMException(NotFoundError, "The SourceBuffer provided is not contained in this MediaSource.");
  /external/chromium_org/ui/file_manager/file_manager/common/js/
util.js 50 case 'NotFoundError':
91 NOT_FOUND_ERR: 'NotFoundError',
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp     [all...]

Completed in 1136 milliseconds