Searched refs:Float64Array (Results 1 - 25 of 31) sorted by relevance

12

/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...]
H A DForward.h41 class Float64Array;
69 using WTF::Float64Array;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8Float64ArrayCustom.h35 #include "wtf/Float64Array.h"
40 class TypedArrayTraits<Float64Array> {
42 typedef v8::Float64Array V8Type;
49 static size_t length(v8::Handle<v8::Float64Array> value)
54 static size_t length(Float64Array* array)
60 typedef V8TypedArray<Float64Array> V8Float64Array;
63 class WrapperTypeTraits<Float64Array> : public TypedArrayWrapperTraits<Float64Array> { };
66 inline v8::Handle<v8::Object> wrap(Float64Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
68 return V8TypedArray<Float64Array>
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2646.js36 storage.push(new Float64Array(heap, 0, itemSize));
H A Dregress-2596.js32 var doubles = new Float64Array(bytes.buffer);
H A Dregress-crbug-173907.js34 var result = new Float64Array(2);
H A Dregress-crbug-173907b.js34 var result = new Float64Array(2);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
H A DTestTypedArray.idl31 ] interface Float64Array : ArrayBufferView {
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8Float64Array.h28 #include "wtf/Float64Array.h"
37 static Float64Array* toNative(v8::Handle<v8::Object> object)
47 static inline void* toInternalPointer(Float64Array* impl)
52 static inline Float64Array* fromInternalPointer(void* object)
54 return static_cast<Float64Array*>(V8ArrayBufferView::fromInternalPointer(object));
56 static void installPerContextProperties(v8::Handle<v8::Object>, Float64Array*, v8::Isolate*) { }
59 friend v8::Handle<v8::Object> wrap(Float64Array*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
60 static v8::Handle<v8::Object> createWrapper(PassRefPtr<Float64Array>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
64 class WrapperTypeTraits<Float64Array > {
70 v8::Handle<v8::Object> wrap(Float64Array* imp
[all...]
H A DV8Float64Array.cpp47 static void initializeScriptWrappableForInterface(Float64Array* object)
61 void webCoreInitializeScriptWrappableForInterface(Float64Array* object)
79 Float64Array* imp = V8Float64Array::toNative(args.Holder());
94 setWebGLArrayHelper<Float64Array, V8Float64Array>(args);
120 v8::Handle<v8::Object> wrap(Float64Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
154 defaultSignature = V8DOMConfiguration::configureTemplate(desc, "Float64Array", V8ArrayBufferView::GetTemplate(isolate, currentWorldType), V8Float64Array::internalFieldCount,
164 desc->InstanceTemplate()->SetIndexedPropertyHandler(Float64ArrayV8Internal::indexedPropertyGetterCallback, Float64ArrayV8Internal::indexedPropertySetterCallback, 0, 0, indexedPropertyEnumerator<Float64Array>);
205 v8::Handle<v8::Object> V8Float64Array::createWrapper(PassRefPtr<Float64Array> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
/external/chromium_org/native_client_sdk/src/examples/api/core/
H A Dexample.js7 var itrSend = new Float64Array(itrMax);
8 var itrNaCl = new Float64Array(itrMax);
9 var itrRecv = new Float64Array(itrMax);
/external/chromium_org/v8/test/mjsunit/
H A Dnans.js45 var doubles = new Float64Array(bytes.buffer);
60 var doubles = new Float64Array(bytes.buffer);
H A Dtyped-array-slice.js34 Float64Array];
H A Dexternal-array-no-sse2.js104 var derived_float64 = new Float64Array(ab,0,1);
105 assertInstance(derived_float64, Float64Array);
147 a = new Float64Array(7);
152 a = new Float64Array(7);
175 var array = new Float64Array(2);
200 Uint32Array, Uint8ClampedArray, Float32Array, Float64Array];
397 var float64_array = new Float64Array(1);
661 do_tagged_index_external_array_test(Float64Array);
H A Dexternal-array.js104 var derived_float64 = new Float64Array(ab,0,1);
105 assertInstance(derived_float64, Float64Array);
147 a = new Float64Array(7);
152 a = new Float64Array(7);
175 var array = new Float64Array(2);
200 Uint32Array, Uint8ClampedArray, Float32Array, Float64Array];
397 var float64_array = new Float64Array(1);
660 do_tagged_index_external_array_test(Float64Array);
H A Delements-kind.js151 assertKind(elements_kind.external_double, new Float64Array(0));
/external/v8/test/mjsunit/
H A Dexternal-array.js109 var array = new Float64Array(2);
143 Uint32Array, PixelArray, Float32Array, Float64Array];
343 var float64_array = new Float64Array(1);
H A Delements-kind.js145 assertKind(elements_kind.external_double, new Float64Array(0));
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dtypedarrays.js269 TestTypedArray(Float64Array, 8, 0.5);
321 TestSubArray(Float64Array, 0.5);
355 Float64Array];
/external/chromium_org/v8/test/cctest/
H A Dtest-weaktypedarrays.cc250 TestViewFromApi<v8::Float64Array>();
376 TestTypedArrayFromScript<v8::Float64Array>("Float64Array");
/external/v8/src/
H A Dd8.h324 static Handle<Value> Float64Array(const Arguments& args);
/external/chromium_org/v8/src/
H A Dapi.h183 V(Float64Array, JSTypedArray) \
245 static inline Local<Float64Array> ToLocalFloat64Array(
369 MAKE_TO_LOCAL_TYPED_ARRAY(Float64Array, kExternalDoubleArray)
H A Dd8.h337 static void Float64Array(const v8::FunctionCallbackInfo<v8::Value>& args);
H A Dtypedarray.js281 SetupTypedArray(8, "Float64Array", global.Float64Array, 8);
/external/chromium_org/v8/include/
H A Dv8.h1472 * Returns true if this value is a Float64Array.
2745 * An instance of Float64Array constructor (ES6 draft 15.13.6).
2748 class V8_EXPORT Float64Array : public TypedArray { class in namespace:v8
2750 static Local<Float64Array> New(Handle<ArrayBuffer> array_buffer,
2752 V8_INLINE(static Float64Array* Cast(Value* obj));
2755 Float64Array();
6437 Float64Array* Float64Array::Cast(v8::Value* value) {
6441 return static_cast<Float64Array*>(value);

Completed in 636 milliseconds

12