Searched defs:Uint8Array (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/html/canvas/
H A DUint8Array.cpp28 #include "Uint8Array.h"
32 PassRefPtr<Uint8Array> Uint8Array::create(unsigned length)
34 return TypedArrayBase<unsigned char>::create<Uint8Array>(length);
37 PassRefPtr<Uint8Array> Uint8Array::create(unsigned char* array, unsigned length)
39 return TypedArrayBase<unsigned char>::create<Uint8Array>(array, length);
42 PassRefPtr<Uint8Array> Uint8Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
44 return TypedArrayBase<unsigned char>::create<Uint8Array>(buffe
47 Uint8Array::Uint8Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WebCore::Uint8Array
[all...]
H A DUint8Array.h36 class Uint8Array : public IntegralTypedArrayBase<unsigned char> { class in namespace:WebCore
38 static PassRefPtr<Uint8Array> create(unsigned length);
39 static PassRefPtr<Uint8Array> create(unsigned char* array, unsigned length);
40 static PassRefPtr<Uint8Array> create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length);
46 PassRefPtr<Uint8Array> subarray(int start) const;
47 PassRefPtr<Uint8Array> subarray(int start, int end) const;
50 Uint8Array(PassRefPtr<ArrayBuffer> buffer,
/external/v8/src/
H A Dd8.cc471 Handle<Value> Shell::Uint8Array(const Arguments& args) { function in class:v8::Shell
826 global_template->Set(String::New("Uint8Array"),
827 FunctionTemplate::New(Uint8Array));

Completed in 97 milliseconds