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

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

Completed in 270 milliseconds