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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFloat64Array.h35 class Float64Array : public TypedArrayBase<double> { class in namespace:WTF
37 static inline PassRefPtr<Float64Array> create(unsigned length);
38 static inline PassRefPtr<Float64Array> create(const double* array, unsigned length);
39 static inline PassRefPtr<Float64Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
43 static inline PassRefPtr<Float64Array> createUninitialized(unsigned length);
54 inline PassRefPtr<Float64Array> subarray(int start) const;
55 inline PassRefPtr<Float64Array> subarray(int start, int end) const;
63 inline Float64Array(PassRefPtr<ArrayBuffer>,
70 PassRefPtr<Float64Array> Float64Array
90 Float64Array::Float64Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WTF::Float64Array
[all...]
/external/v8/src/
H A Dd8.cc503 Handle<Value> Shell::Float64Array(const Arguments& args) { function in class:v8::Shell
838 global_template->Set(String::New("Float64Array"),
839 FunctionTemplate::New(Float64Array));
/external/chromium_org/v8/include/
H A Dv8.h1573 * Returns true if this value is a Float64Array.
2990 * An instance of Float64Array constructor (ES6 draft 15.13.6).
2993 class V8_EXPORT Float64Array : public TypedArray { class in namespace:v8
2995 static Local<Float64Array> New(Handle<ArrayBuffer> array_buffer,
2997 V8_INLINE static Float64Array* Cast(Value* obj);
3000 Float64Array();
6546 Float64Array* Float64Array::Cast(v8::Value* value) {
6550 return static_cast<Float64Array*>(value);

Completed in 193 milliseconds