OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Uint8Array
(Results
26 - 50
of
89
) sorted by null
1
2
3
4
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AnalyserNode.h
65
void getByteFrequencyData(
Uint8Array
* array) { m_analyser.getByteFrequencyData(array); }
66
void getByteTimeDomainData(
Uint8Array
* array) { m_analyser.getByteTimeDomainData(array); }
RealtimeAnalyser.h
61
void getByteFrequencyData(
Uint8Array
*);
62
void getByteTimeDomainData(
Uint8Array
*);
RealtimeAnalyser.cpp
42
#include "wtf/
Uint8Array
.h"
234
void RealtimeAnalyser::getByteFrequencyData(
Uint8Array
* destinationArray)
271
void RealtimeAnalyser::getByteTimeDomainData(
Uint8Array
* destinationArray)
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIOutput.h
36
#include "wtf/
Uint8Array
.h"
49
void send(
Uint8Array
*, double timestamp, ExceptionState&);
53
void send(
Uint8Array
*, ExceptionState&);
MIDIOutput.cpp
57
void MIDIOutput::send(
Uint8Array
* array, double timestamp, ExceptionState& es)
77
RefPtr<
Uint8Array
> array =
Uint8Array
::create(unsignedData.size());
91
void MIDIOutput::send(
Uint8Array
* data, ExceptionState& es)
MIDIInput.cpp
68
RefPtr<
Uint8Array
> array =
Uint8Array
::create(totalMessageSize);
/external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.h
36
#include "wtf/
Uint8Array
.h"
53
PassRefPtr<
Uint8Array
> encode(const String&, const Dictionary&);
TextEncoder.cpp
78
PassRefPtr<
Uint8Array
> TextEncoder::encode(const String& input, const Dictionary& options)
95
return
Uint8Array
::create(unsignedBuffer, result.length());
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.h
34
#include "wtf/
Uint8Array
.h"
54
PassRefPtr<MediaKeySession> createSession(ScriptExecutionContext*, const String& mimeType,
Uint8Array
* initData, ExceptionState&);
MediaKeySession.cpp
86
void MediaKeySession::generateKeyRequest(const String& mimeType,
Uint8Array
* initData)
113
void MediaKeySession::update(
Uint8Array
* key, ExceptionState& es)
136
RefPtr<
Uint8Array
> pendingKey = m_pendingKeys.takeFirst();
188
init.message =
Uint8Array
::create(message, messageLength);
MediaKeys.cpp
87
PassRefPtr<MediaKeySession> MediaKeys::createSession(ScriptExecutionContext* context, const String& type,
Uint8Array
* initData, ExceptionState& es)
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
WebKitSourceBuffer.h
56
void append(PassRefPtr<
Uint8Array
> data, ExceptionState&);
WebKitSourceBuffer.cpp
39
#include "wtf/
Uint8Array
.h"
107
void WebKitSourceBuffer::append(PassRefPtr<
Uint8Array
> data, ExceptionState& es)
/external/chromium_org/third_party/WebKit/Source/wtf/
Forward.h
49
class
Uint8Array
;
77
using WTF::
Uint8Array
;
Uint8ClampedArray.h
33
#include "wtf/
Uint8Array
.h"
38
class Uint8ClampedArray : public
Uint8Array
{
109
:
Uint8Array
(buffer, byteOffset, length)
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLGetInfo.h
41
#include "wtf/
Uint8Array
.h"
91
explicit WebGLGetInfo(PassRefPtr<
Uint8Array
> value);
114
PassRefPtr<
Uint8Array
> getWebGLUnsignedByteArray() const;
135
RefPtr<
Uint8Array
> m_webglUnsignedByteArray;
WebGLGetInfo.cpp
39
#include "wtf/
Uint8Array
.h"
182
WebGLGetInfo::WebGLGetInfo(PassRefPtr<
Uint8Array
> value)
299
PassRefPtr<
Uint8Array
> WebGLGetInfo::getWebGLUnsignedByteArray() const
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.idl
91
[EnabledAtRuntime=legacyEncryptedMedia, RaisesException] void webkitGenerateKeyRequest([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, optional
Uint8Array
initData);
92
[EnabledAtRuntime=legacyEncryptedMedia, RaisesException] void webkitAddKey([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem,
Uint8Array
key, optional
Uint8Array
initData, [Default=NullString] optional DOMString sessionId);
HTMLMediaElement.h
161
void webkitGenerateKeyRequest(const String& keySystem, PassRefPtr<
Uint8Array
> initData, ExceptionState&);
163
void webkitAddKey(const String& keySystem, PassRefPtr<
Uint8Array
> key, PassRefPtr<
Uint8Array
> initData, const String& sessionId, ExceptionState&);
164
void webkitAddKey(const String& keySystem, PassRefPtr<
Uint8Array
> key, ExceptionState&);
375
virtual bool mediaPlayerKeyNeeded(
Uint8Array
*) OVERRIDE;
/external/chromium_org/chrome/test/ext_auto/auto_provider/
server.js
17
var view = new
Uint8Array
(buffer);
33
var view = new
Uint8Array
(outputBuffer);
47
var view = new
Uint8Array
(outputBuffer);
/external/chromium_org/content/test/data/media/
encrypted_media_utils.js
11
var KEY = new
Uint8Array
([0xeb, 0xdd, 0x62, 0xf1, 0x68, 0x14, 0xd2, 0x7b,
137
var init_key_id = new
Uint8Array
(keyID.length);
media_source_utils.js
48
srcBuffer.append(new
Uint8Array
(e.target.response));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
Dictionary.h
80
bool get(const String&, RefPtr<
Uint8Array
>&) const;
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
MediaPlayer.h
85
virtual bool mediaPlayerKeyNeeded(
Uint8Array
*) = 0;
/external/chromium_org/v8/test/mjsunit/harmony/
typedarrays.js
70
var a1 = new
Uint8Array
(ab);
76
var a2 = new
Uint8Array
(slice);
262
TestTypedArray(
Uint8Array
, 1, 0xFF);
314
TestSubArray(
Uint8Array
, 0xFF);
330
TestTypedArrayOutOfRange(
Uint8Array
, 0x1FA, 0xFA);
331
TestTypedArrayOutOfRange(
Uint8Array
, -1, 0xFF);
347
Uint8Array
,
Completed in 1419 milliseconds
1
2
3
4