HomeSort by relevance Sort by last modified time
    Searched refs:IndexSizeError (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AnalyserNode.cpp 81 IndexSizeError,
94 IndexSizeError,
105 IndexSizeError,
116 IndexSizeError,
OfflineAudioContext.cpp 59 IndexSizeError,
72 IndexSizeError,
DefaultAudioDestinationNode.cpp 112 IndexSizeError,
AudioContext.cpp 351 IndexSizeError,
355 IndexSizeError,
361 IndexSizeError,
367 IndexSizeError,
449 IndexSizeError,
473 IndexSizeError,
516 IndexSizeError,
525 IndexSizeError,
533 IndexSizeError,
AudioNode.cpp 198 IndexSizeError,
205 IndexSizeError,
238 IndexSizeError,
261 IndexSizeError,
  /external/chromium_org/third_party/WebKit/Source/core/html/
ImageData.cpp 72 exceptionState.throwDOMException(IndexSizeError, String::format("The source %s is zero or not a number.", width ? "height" : "width"));
80 exceptionState.throwDOMException(IndexSizeError, "The requested image size exceeds the supported range.");
100 exceptionState.throwDOMException(IndexSizeError, "The source width is zero or not a number.");
106 exceptionState.throwDOMException(IndexSizeError, "The input data has a zero byte length.");
110 exceptionState.throwDOMException(IndexSizeError, "The input data byte length is not a multiple of 4.");
115 exceptionState.throwDOMException(IndexSizeError, "The input data byte length is not a multiple of (4 * width).");
121 exceptionState.throwDOMException(IndexSizeError, "The input data byte length is not equal to (4 * width * height).");
HTMLTableSectionElement.cpp 62 exceptionState.throwDOMException(IndexSizeError, "The provided index (" + String::number(index) + " is outside the range [-1, " + String::number(numRows) + "].");
84 exceptionState.throwDOMException(IndexSizeError, "The provided index (" + String::number(index) + " is outside the range [-1, " + String::number(numRows) + "].");
HTMLTableRowElement.cpp 121 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(index) + ") is outside the range [-1, " + String::number(numCells) + "].");
143 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(index) + ") is outside the range [0, " + String::number(numCells) + ").");
HTMLOptionsCollection.cpp 86 exceptionState.throwDOMException(IndexSizeError, "The index provided (" + String::number(index) + ") is less than -1.");
TimeRanges.cpp 118 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("index", index, length()));
127 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("index", index, length()));
HTMLTableElement.cpp 173 exceptionState.throwDOMException(IndexSizeError, "The index provided (" + String::number(index) + ") is less than -1.");
188 exceptionState.throwDOMException(IndexSizeError, "The index provided (" + String::number(index) + ") is greater than the number of rows in the table (" + String::number(i) + ").");
219 exceptionState.throwDOMException(IndexSizeError, "The index provided (" + String::number(index) + ") is less than -1.");
235 exceptionState.throwDOMException(IndexSizeError, "The index provided (" + String::number(index) + ") is greater than the number of rows in the table (" + String::number(i) + ").");
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ExceptionCode.h 35 IndexSizeError = 1,
DOMException.cpp 41 { "IndexSizeError", "Index or size was negative, or greater than the allowed value.", 1 },
87 size_t tableIndex = ec - IndexSizeError;
CharacterData.cpp 61 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) + ").");
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasGradient.cpp 50 exceptionState.throwDOMException(IndexSizeError, "The provided value (" + String::number(value) + ") is outside the range (0.0, 1.0).");
CanvasPathMethods.cpp 116 exceptionState.throwDOMException(IndexSizeError, "The radius provided (" + String::number(r) + ") is negative.");
260 exceptionState.throwDOMException(IndexSizeError, "The radius provided (" + String::number(radius) + ") is negative.");
284 exceptionState.throwDOMException(IndexSizeError, "The major-axis radius provided (" + String::number(radiusX) + ") is negative.");
288 exceptionState.throwDOMException(IndexSizeError, "The minor-axis radius provided (" + String::number(radiusY) + ") is negative.");
DataView.cpp 137 exceptionState.throwDOMException(IndexSizeError, "The provided offset (" + String::number(byteOffset) + ") is outside the allowed range.");
152 exceptionState.throwDOMException(IndexSizeError, "The provided offset (" + String::number(byteOffset) + ") is outside the allowed range.");
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTextContentElement.cpp 103 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("charnum", charnum, getNumberOfChars()));
118 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("charnum", charnum, getNumberOfChars()));
131 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("charnum", charnum, getNumberOfChars()));
144 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("charnum", charnum, getNumberOfChars()));
157 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("charnum", charnum, getNumberOfChars()));
174 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("charnum", charnum, getNumberOfChars()));
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 77 exceptionState.throwDOMException(IndexSizeError, "The value provided (" + String::number(v) + ") is negative. Lengths must be greater than or equal to 0.");
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DOMSelection.cpp 208 exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is not a valid offset.");
267 exceptionState.throwDOMException(IndexSizeError, String::number(baseOffset) + " is not a valid base offset.");
272 exceptionState.throwDOMException(IndexSizeError, String::number(extentOffset) + " is not a valid extent offset.");
344 exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is not a valid offset.");
348 exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is larger than the given node's length.");
365 exceptionState.throwDOMException(IndexSizeError, String::number(index) + " is not a valid index.");
  /external/chromium_org/third_party/WebKit/Source/core/imagebitmap/
ImageBitmapFactories.cpp 100 exceptionState.throwDOMException(IndexSizeError, String::format("The source %s provided is 0.", sw ? "height" : "width"));
135 exceptionState.throwDOMException(IndexSizeError, String::format("The source %s provided is 0.", sw ? "height" : "width"));
176 exceptionState.throwDOMException(IndexSizeError, String::format("The source %s provided is 0.", sw ? "height" : "width"));
196 exceptionState.throwDOMException(IndexSizeError, String::format("The source %s provided is 0.", sw ? "height" : "width"));
214 exceptionState.throwDOMException(IndexSizeError, String::format("The source %s provided is 0.", sw ? "height" : "width"));
229 exceptionState.throwDOMException(IndexSizeError, String::format("The source %s provided is 0.", sw ? "height" : "width"));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGroupingRule.cpp 67 exceptionState.throwDOMException(IndexSizeError, "the index " + String::number(index) + " must be less than or equal to the length of the rule list.");
99 exceptionState.throwDOMException(IndexSizeError, "the index " + String::number(index) + " is greated than the length of the rule list.");
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
PrivateScriptRunner.js 12 // throwException(PrivateScriptDOMException.IndexSizeError, "...");
46 "IndexSizeError",
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
V8SQLResultSetRowListCustom.cpp 61 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound<unsigned>("index", index, rowList->length()));
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGListPropertyHelper.h 263 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("index", index, m_values.size()));
304 exceptionState.throwDOMException(IndexSizeError, String::format("Failed to replace the provided item at index %zu.", index));
322 exceptionState.throwDOMException(IndexSizeError, ExceptionMessages::indexExceedsMaximumBound("index", index, m_values.size()));

Completed in 590 milliseconds

1 2