Home
last modified time | relevance | path

Searched refs:TypedArray (Results 1 – 21 of 21) sorted by relevance

/external/v8/test/mjsunit/es6/
Dbuilt-in-accessor-names.js24 let TypedArray = Uint8Array.__proto__; variable
26 assertGetterName('get buffer', TypedArray.prototype, 'buffer');
27 assertGetterName('get byteOffset', TypedArray.prototype, 'byteOffset');
28 assertGetterName('get byteLength', TypedArray.prototype, 'byteLength');
29 assertGetterName('get length', TypedArray.prototype, 'length');
30 assertGetterName('get [Symbol.toStringTag]', TypedArray.prototype, Symbol.toStringTag);
Dtypedarray-proto.js21 let TypedArray = Uint8Array.__proto__; variable
22 let TypedArrayPrototype = TypedArray.prototype;
24 assertEquals(TypedArray.__proto__, Function.prototype);
55 assertThrows(() => new TypedArray(), TypeError);
60 let desc = Object.getOwnPropertyDescriptor(TypedArray, "prototype");
Dspecies.js9 let TypedArray = Uint8Array.__proto__; variable
13 let classesWithSpecies = [RegExp, Array, TypedArray, ArrayBuffer, Map, Set, Promise];
Dclasses-subclass-builtins.js369 var TypedArray = Uint8Array.__proto__; variable
384 assertTrue(o instanceof TypedArray);
387 checkPrototypeChain(o, [array, TypedArray, Object]);
392 assertTrue(o instanceof TypedArray);
396 checkPrototypeChain(o, [A, array, TypedArray, Object]);
/external/v8/test/test262/
Dtest262.status149 'built-ins/TypedArray/prototype/set/typedarray-arg-negative-integer-offset-throws': [FAIL],
150 'built-ins/TypedArray/prototype/set/array-arg-negative-integer-offset-throws': [FAIL],
169 # Some TypedArray methods throw due to the same bug, from Get
170 'built-ins/TypedArray/prototype/every/callbackfn-detachbuffer': [FAIL],
171 'built-ins/TypedArray/prototype/filter/callbackfn-detachbuffer': [FAIL],
172 'built-ins/TypedArray/prototype/find/predicate-may-detach-buffer': [FAIL],
173 'built-ins/TypedArray/prototype/findIndex/predicate-may-detach-buffer': [FAIL],
174 'built-ins/TypedArray/prototype/forEach/callbackfn-detachbuffer': [FAIL],
175 'built-ins/TypedArray/prototype/map/callbackfn-detachbuffer': [FAIL],
176 'built-ins/TypedArray/prototype/reduce/callbackfn-detachbuffer': [FAIL],
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowContext.java6 import android.content.res.TypedArray;
63 public final TypedArray obtainStyledAttributes( in obtainStyledAttributes()
69 public final TypedArray obtainStyledAttributes( in obtainStyledAttributes()
75 public final TypedArray obtainStyledAttributes( in obtainStyledAttributes()
81 public final TypedArray obtainStyledAttributes( in obtainStyledAttributes()
DShadowResources.java6 import android.content.res.TypedArray;
218 public TypedArray obtainStyledAttributes(int[] attrs) { in obtainStyledAttributes()
223 …public TypedArray obtainStyledAttributes(int resid, int[] attrs) throws android.content.res.Resour… in obtainStyledAttributes()
228 …public TypedArray obtainStyledAttributes(AttributeSet set, int[] attrs, int defStyleAttr, int defS… in obtainStyledAttributes()
229 return newInstanceOf(TypedArray.class); in obtainStyledAttributes()
DShadowTypedArray.java4 import android.content.res.TypedArray;
10 @Implements(TypedArray.class)
/external/replicaisland/src/com/replica/replicaisland/
DSliderPreference.java25 import android.content.res.TypedArray;
52 TypedArray a = context.obtainStyledAttributes(attrs, in SliderPreference()
97 protected Object onGetDefaultValue(TypedArray ta,int index) { in onGetDefaultValue()
DKeyboardConfigDialogPreference.java23 import android.content.res.TypedArray;
77 TypedArray a = context.obtainStyledAttributes(attrs, in KeyboardConfigDialogPreference()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DTypedArrayTest.java18 private android.content.res.TypedArray typedArray;
22 typedArray = Robolectric.newInstanceOf(android.content.res.TypedArray.class); in setUp()
/external/v8/build/android/
Dlocale_pak_resources.gypi7 # a locale_paks TypedArray so that resource files can be enumerated at runtime.
/external/v8/src/
Dapi.h153 V(TypedArray, JSTypedArray) \
221 static inline Local<TypedArray> ToLocal(
368 MAKE_TO_LOCAL(ToLocal, JSTypedArray, TypedArray) in MAKE_TO_LOCAL()
Dapi.cc3348 void v8::TypedArray::CheckCast(Value* that) { in CheckCast()
6870 size_t v8::TypedArray::Length() { in Length()
/external/v8/include/
Dv8.h3676 class V8_EXPORT TypedArray : public ArrayBufferView {
3684 V8_INLINE static TypedArray* Cast(Value* obj);
3687 TypedArray();
3696 class V8_EXPORT Uint8Array : public TypedArray {
3714 class V8_EXPORT Uint8ClampedArray : public TypedArray {
3732 class V8_EXPORT Int8Array : public TypedArray {
3750 class V8_EXPORT Uint16Array : public TypedArray {
3768 class V8_EXPORT Int16Array : public TypedArray {
3786 class V8_EXPORT Uint32Array : public TypedArray {
3804 class V8_EXPORT Int32Array : public TypedArray {
[all …]
/external/v8/src/wasm/
Dwasm-js.cc56 Local<TypedArray> array = Local<TypedArray>::Cast(source); in GetRawBufferSource()
/external/v8/src/runtime/
Druntime-typedarray.cc286 BUFFER_VIEW_GETTER(TypedArray, Length, length) in BUFFER_VIEW_GETTER()
/external/v8/
DChangeLog1465 TypedArray: Make byteOffset, byteLength, and length configurable (issue
2284 Fix TypedArray Property optimizations (Chromium issue 593634).
4465 Restore per-TypedArray-class length accessors as a perf workaround
4841 Construct instances of base class from TypedArray.prototype.subarray
5080 TypedArray and ArrayBuffer support for @@species (issue 4093).
5455 Reland of Use ES2015-style TypedArray prototype chain (patchset #1 id:1
5512 Use ES2015-style TypedArray prototype chain (issue 4085).
8603 Test that TypedArray methods don't read length (issue 3578).
8605 Implement %TypedArray%.{fill,find,findIndex} (issue 3578).
8607 TypedArray.prototype.copyWithin method (issue 3578).
[all …]
/external/v8/test/cctest/
Dtest-api.cc3478 static void CheckIsNeutered(v8::Local<v8::TypedArray> ta) { in CheckIsNeutered()
3491 v8::Local<v8::TypedArray> ta = in CheckIsTypedArrayVarNeutered()
3492 v8::Local<v8::TypedArray>::Cast(CompileRun(name)); in CheckIsTypedArrayVarNeutered()
3497 template <typename TypedArray, int kElementSize>
3498 static Local<TypedArray> CreateAndCheck(Local<v8::ArrayBuffer> ab, in CreateAndCheck()
3500 v8::Local<TypedArray> ta = TypedArray::New(ab, byteOffset, length); in CreateAndCheck()
16424 template <typename ElementType, typename TypedArray, class ExternalArrayClass,
16439 Local<TypedArray> ta = in TypedArrayTestHelper()
16440 TypedArray::New(ab, 2*sizeof(ElementType), kElementCount); in TypedArrayTestHelper()
/external/v8/build/config/android/
Drules.gni493 # a locale_paks TypedArray so that resource files can be enumerated at runtime.
/external/chromium-trace/catapult/tracing/test_data/
Dddms_calculator_start.trace685 0x71060388 android.view.ViewGroup$LayoutParams setBaseAttributes (Landroid/content/res/TypedArray;I…
706 …obtainStyledAttributes (Landroid/util/AttributeSet;[I)Landroid/content/res/TypedArray; Context.java
707 …tainStyledAttributes (Landroid/util/AttributeSet;[III)Landroid/content/res/TypedArray; Context.java
708 0x71063208 android.content.Context obtainStyledAttributes ([I)Landroid/content/res/TypedArray; Cont…
923 …ent.res.Resources$Theme obtainStyledAttributes (I[I)Landroid/content/res/TypedArray; Resources.java
924 …inStyledAttributes (Landroid/util/AttributeSet;[III)Landroid/content/res/TypedArray; Resources.java
925 …tent.res.Resources$Theme obtainStyledAttributes ([I)Landroid/content/res/TypedArray; Resources.java
966 0x710903e8 android.content.res.TypedArray extractThemeAttrs ()[I TypedArray.java
967 0x71090418 android.content.res.TypedArray <init> (Landroid/content/res/Resources;[I[II)V TypedArray
968 0x71090448 android.content.res.TypedArray getValueAt (ILandroid/util/TypedValue;)Z TypedArray.java
[all …]