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

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

Completed in 108 milliseconds