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 final : public TypedArrayBase<float> {
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/chromium_org/v8/test/mjsunit/es6/
H A Dmath-fround.js7 // Monkey-patch Float32Array.
8 Float32Array = function(x) { this[0] = 0; };
0 Float32Array = function(x) { this[0] = 0; }; class
/external/chromium_org/v8/include/
H A Dv8.h1654 * Returns true if this value is a Float32Array.
3122 * An instance of Float32Array constructor (ES6 draft 15.13.6).
3125 class V8_EXPORT Float32Array : public TypedArray { class in namespace:v8
3127 static Local<Float32Array> New(Handle<ArrayBuffer> array_buffer,
3129 V8_INLINE static Float32Array* Cast(Value* obj);
3132 Float32Array();
6734 Float32Array* Float32Array::Cast(v8::Value* value) {
6738 return static_cast<Float32Array*>(value);

Completed in 382 milliseconds