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 72 void appendBuffer(PassRefPtr<ArrayBuffer> data, ExceptionState&);
73 void appendBuffer(PassRefPtr<ArrayBufferView> data, ExceptionState&);
SourceBuffer.cpp 66 exceptionState.throwDOMException(InvalidStateError, "This SourceBuffer is still processing an 'appendBuffer', 'appendStream', or 'remove' operation.");
268 void SourceBuffer::appendBuffer(PassRefPtr<ArrayBuffer> data, ExceptionState& exceptionState)
270 // Section 3.2 appendBuffer()
271 // https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#widl-SourceBuffer-appendBuffer-void-ArrayBufferView-data
275 void SourceBuffer::appendBuffer(PassRefPtr<ArrayBufferView> data, ExceptionState& exceptionState)
277 // Section 3.2 appendBuffer()
278 // https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#widl-SourceBuffer-appendBuffer-void-ArrayBufferView-data
379 traceEventName = "SourceBuffer::appendBuffer";
501 // Section 3.2 appendBuffer()
502 // 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/media/test/data/eme_player_js/
media_source_utils.js 62 srcBuffer.appendBuffer(new Uint8Array(e.target.response));
  /external/chromium_org/remoting/webapp/
media_source_renderer.js 97 this.sourceBuffer_.appendBuffer(buffer);
  /external/chromium_org/remoting/webapp/js_proto/
dom_proto.js 168 SourceBuffer.prototype.appendBuffer = function(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 146 milliseconds