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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/wtf/
Uint8Array.h 36 class Uint8Array : public IntegralTypedArrayBase<unsigned char> {
38 static inline PassRefPtr<Uint8Array> create(unsigned length);
39 static inline PassRefPtr<Uint8Array> create(const unsigned char* array, unsigned length);
40 static inline PassRefPtr<Uint8Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Uint8Array> createUninitialized(unsigned length);
49 inline PassRefPtr<Uint8Array> subarray(int start) const;
50 inline PassRefPtr<Uint8Array> subarray(int start, int end) const;
58 inline Uint8Array(PassRefPtr<ArrayBuffer>,
65 PassRefPtr<Uint8Array> Uint8Array::create(unsigned length
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
AesCbcParams.idl 34 readonly attribute Uint8Array iv;
AesCbcParams.cpp 38 Uint8Array* AesCbcParams::iv()
42 m_iv = Uint8Array::create(iv.data(), iv.size());
AesCbcParams.h 35 #include "wtf/Uint8Array.h"
43 Uint8Array* iv();
48 RefPtr<Uint8Array> m_iv;
RsaKeyGenParams.h 36 #include "wtf/Uint8Array.h"
45 Uint8Array* publicExponent();
50 RefPtr<Uint8Array> m_publicExponent;
RsaKeyGenParams.idl 35 readonly attribute Uint8Array publicExponent;
RsaKeyGenParams.cpp 43 Uint8Array* RsaKeyGenParams::publicExponent()
47 m_publicExponent = Uint8Array::create(exponent.data(), exponent.size());
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8Uint8ArrayCustom.h 35 #include "wtf/Uint8Array.h"
40 class TypedArrayTraits<Uint8Array> {
42 typedef v8::Uint8Array V8Type;
49 static size_t length(v8::Handle<v8::Uint8Array> value)
54 static size_t length(Uint8Array* array)
60 typedef V8TypedArray<Uint8Array> V8Uint8Array;
63 class WrapperTypeTraits<Uint8Array> : public TypedArrayWrapperTraits<Uint8Array> { };
66 inline v8::Handle<v8::Object> wrap(Uint8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
68 return V8TypedArray<Uint8Array>::wrap(impl, creationContext, isolate)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AnalyserNode.idl 41 void getByteFrequencyData(Uint8Array array);
44 void getByteTimeDomainData(Uint8Array array);
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeyNeededEvent.idl 31 readonly attribute Uint8Array initData;
MediaKeyMessageEvent.h 40 RefPtr<Uint8Array> message;
60 Uint8Array* message() const { return m_message.get(); }
67 RefPtr<Uint8Array> m_message;
MediaKeyNeededEvent.h 39 RefPtr<Uint8Array> initData;
58 Uint8Array* initData() const { return m_initData.get(); }
64 RefPtr<Uint8Array> m_initData;
MediaKeyMessageEvent.idl 31 readonly attribute Uint8Array message;
MediaKeys.idl 32 [CallWith=ScriptExecutionContext, RaisesException] MediaKeySession createSession([Default=Undefined] optional DOMString type, [Default=Undefined] optional Uint8Array initData);
MediaKeySession.h 37 #include "wtf/Uint8Array.h"
66 void generateKeyRequest(const String& mimeType, Uint8Array* initData);
67 void update(Uint8Array* key, ExceptionState&);
100 PendingKeyRequest(const String& mimeType, Uint8Array* initData) : mimeType(mimeType), initData(initData) { }
102 RefPtr<Uint8Array> initData;
107 Deque<RefPtr<Uint8Array> > m_pendingKeys;
MediaKeySession.idl 38 [RaisesException] void update(Uint8Array key);
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIMessageEvent.idl 38 [InitializedByEventConstructor] readonly attribute Uint8Array data;
MIDIOutput.idl 34 [RaisesException] void send(Uint8Array data, optional double timestamp);
MIDIMessageEvent.h 35 #include "wtf/Uint8Array.h"
46 RefPtr<Uint8Array> data;
56 static PassRefPtr<MIDIMessageEvent> create(double receivedTime, PassRefPtr<Uint8Array> data)
67 PassRefPtr<Uint8Array> data() { return m_data; }
78 MIDIMessageEvent(double receivedTime, PassRefPtr<Uint8Array> data)
95 RefPtr<Uint8Array> m_data;
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
WebKitSourceBuffer.idl 43 [RaisesException] void append(Uint8Array data);
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaKeyEvent.h 39 RefPtr<Uint8Array> initData;
40 RefPtr<Uint8Array> message;
64 Uint8Array* initData() const { return m_initData.get(); }
65 Uint8Array* message() const { return m_message.get(); }
76 RefPtr<Uint8Array> m_initData;
77 RefPtr<Uint8Array> m_message;
MediaKeyEvent.idl 32 [InitializedByEventConstructor] readonly attribute Uint8Array initData;
33 [InitializedByEventConstructor] readonly attribute Uint8Array message;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
ContentDecryptionModuleSession.h 44 class Uint8Array;
67 void generateKeyRequest(const String& mimeType, const WTF::Uint8Array& initData);
68 void update(const WTF::Uint8Array& key);
ContentDecryptionModuleSession.cpp 39 #include "wtf/Uint8Array.h"
59 void ContentDecryptionModuleSession::generateKeyRequest(const String& mimeType, const Uint8Array& initData)
64 void ContentDecryptionModuleSession::update(const Uint8Array& key)
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.idl 38 Uint8Array encode([Default=NullString] optional DOMString input, optional Dictionary options);

Completed in 773 milliseconds

1 2 3 4