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

  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBuffer.idl 64 [RaisesException] void appendBuffer(ArrayBuffer data);
65 [RaisesException] void appendBuffer(ArrayBufferView data);
SourceBuffer.h 77 void appendBuffer(PassRefPtr<ArrayBuffer> data, ExceptionState&);
78 void appendBuffer(PassRefPtr<ArrayBufferView> data, ExceptionState&);
SourceBuffer.cpp 65 exceptionState.throwDOMException(InvalidStateError, "This SourceBuffer is still processing an 'appendBuffer', 'appendStream', or 'remove' operation.");
260 void SourceBuffer::appendBuffer(PassRefPtr<ArrayBuffer> data, ExceptionState& exceptionState)
262 // Section 3.2 appendBuffer()
263 // https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#widl-SourceBuffer-appendBuffer-void-ArrayBufferView-data
267 void SourceBuffer::appendBuffer(PassRefPtr<ArrayBufferView> data, ExceptionState& exceptionState)
269 // Section 3.2 appendBuffer()
270 // https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#widl-SourceBuffer-appendBuffer-void-ArrayBufferView-data
368 traceEventName = "SourceBuffer::appendBuffer";
467 // Section 3.2 appendBuffer()
468 // https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#widl-SourceBuffer-appendBuffer-void-ArrayBufferView-dat
    [all...]
  /external/chromium_org/content/test/data/media/
media_source_utils.js 59 srcBuffer.appendBuffer(new Uint8Array(e.target.response));
  /external/chromium_org/remoting/webapp/js_proto/
dom_proto.js 160 SourceBuffer.prototype.appendBuffer = function(buffer) {}
  /external/chromium_org/remoting/webapp/
media_source_renderer.js 97 this.sourceBuffer_.appendBuffer(buffer);
  /external/chromium_org/tools/perf/page_sets/mse_cases/
startup_test.js 214 if (this.sourceBuffer.appendBuffer) {
217 this.sourceBuffer.appendBuffer(this.xhr.response);

Completed in 105 milliseconds