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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFloat32Array.h35 class Float32Array : public TypedArrayBase<float> { class in namespace:WTF
37 static inline PassRefPtr<Float32Array> create(unsigned length);
38 static inline PassRefPtr<Float32Array> create(const float* array, unsigned length);
39 static inline PassRefPtr<Float32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
43 static inline PassRefPtr<Float32Array> createUninitialized(unsigned length);
54 inline PassRefPtr<Float32Array> subarray(int start) const;
55 inline PassRefPtr<Float32Array> subarray(int start, int end) const;
63 inline Float32Array(PassRefPtr<ArrayBuffer>,
70 PassRefPtr<Float32Array> Float32Array
90 Float32Array::Float32Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WTF::Float32Array
[all...]
/external/v8/src/
H A Dd8.cc497 Handle<Value> Shell::Float32Array(const Arguments& args) { function in class:v8::Shell
836 global_template->Set(String::New("Float32Array"),
837 FunctionTemplate::New(Float32Array));
/external/chromium_org/v8/include/
H A Dv8.h1567 * Returns true if this value is a Float32Array.
2974 * An instance of Float32Array constructor (ES6 draft 15.13.6).
2977 class V8_EXPORT Float32Array : public TypedArray { class in namespace:v8
2979 static Local<Float32Array> New(Handle<ArrayBuffer> array_buffer,
2981 V8_INLINE static Float32Array* Cast(Value* obj);
2984 Float32Array();
6538 Float32Array* Float32Array::Cast(v8::Value* value) {
6542 return static_cast<Float32Array*>(value);

Completed in 747 milliseconds