Home
last modified time | relevance | path

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

12345

/third_party/node/deps/undici/src/types/
Dwebidl.d.ts124 TypedArray ( method
126 TypedArray: NodeJS.TypedArray | ArrayBufferLike
127 ): NodeJS.TypedArray | ArrayBufferLike
128 TypedArray ( method
130 TypedArray: NodeJS.TypedArray | ArrayBufferLike,
132 ): NodeJS.TypedArray | ArrayBuffer
145 ): NodeJS.TypedArray | ArrayBufferLike | DataView
/third_party/node/deps/v8/include/
Dv8-typed-array.h20 class V8_EXPORT TypedArray : public ArrayBufferView {
36 V8_INLINE static TypedArray* Cast(Value* value) { in Cast()
40 return static_cast<TypedArray*>(value); in Cast()
44 TypedArray();
51 class V8_EXPORT Uint8Array : public TypedArray {
72 class V8_EXPORT Uint8ClampedArray : public TypedArray {
94 class V8_EXPORT Int8Array : public TypedArray {
115 class V8_EXPORT Uint16Array : public TypedArray {
136 class V8_EXPORT Int16Array : public TypedArray {
157 class V8_EXPORT Uint32Array : public TypedArray {
[all …]
/third_party/jerryscript/tests/jerry/es2015/
DtypedArray-find-index.js35 typedArrayTypes.forEach (function (TypedArray) { argument
37 var array1 = new TypedArray ([5, 12, 0, 8, 120, 44]);
65 var src_array = new TypedArray ([4, 6, 8, 12]);
84 src_array = new TypedArray ([4, 5, 8, 12]);
90 TypedArray.prototype.findIndex.call (5); class
97 var array = new TypedArray ([1, 2, 3]);
DtypedArray-find.js35 typedArrayTypes.forEach (function (TypedArray) { argument
37 var array1 = new TypedArray ([5, 12, 0, 8, 120, 44]);
65 var src_array = new TypedArray ([4, 6, 8, 12]);
84 src_array = new TypedArray ([4, 5, 8, 12]);
90 TypedArray.prototype.find.call (5); class
97 var array = new TypedArray ([1, 2, 3]);
/third_party/typescript/tests/baselines/reference/
DunionWithIndexSignature.types30 export type TypedArray = Int32Array | Uint8Array;
31 >TypedArray : Int32Array | Uint8Array
47 export function flatten<T extends number|TypedArray>(arr: T) {
48 >flatten : <T extends number | TypedArray>(arr: T) => void
54 >arr : number | TypedArray
DunionWithIndexSignature.symbols38 export type TypedArray = Int32Array | Uint8Array;
39 >TypedArray : Symbol(TypedArray, Decl(unionWithIndexSignature.ts, 11, 1))
57 export function flatten<T extends number|TypedArray>(arr: T) {
60 >TypedArray : Symbol(TypedArray, Decl(unionWithIndexSignature.ts, 11, 1))
DunionWithIndexSignature.js17 export type TypedArray = Int32Array | Uint8Array;
23 export function flatten<T extends number|TypedArray>(arr: T) {
/third_party/node/doc/api/
Dzlib.md525 * `dictionary` {Buffer|TypedArray|DataView|ArrayBuffer} (deflate/inflate only,
881 All of these take a [`Buffer`][], [`TypedArray`][], [`DataView`][],
897 * `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
909 * `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
922 * `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
934 * `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
949 description: The `buffer` parameter can be any `TypedArray` or `DataView`.
955 * `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
969 description: The `buffer` parameter can be any `TypedArray` or `DataView`.
975 * `buffer` {Buffer|TypedArray|DataView|ArrayBuffer|string}
[all …]
Dstring_decoder.md66 * `buffer` {Buffer|TypedArray|DataView} A `Buffer`, or `TypedArray`, or
89 * `buffer` {Buffer|TypedArray|DataView} A `Buffer`, or `TypedArray`, or
94 the end of the `Buffer`, or `TypedArray`, or `DataView` are omitted from the
Dcrypto.md101 * `spkac` {string|ArrayBuffer|Buffer|TypedArray|DataView}
133 * `spkac` {string|ArrayBuffer|Buffer|TypedArray|DataView}
166 * `spkac` {string|ArrayBuffer|Buffer|TypedArray|DataView}
221 * `spkac` {string|ArrayBuffer|Buffer|TypedArray|DataView}
250 * `spkac` {string|ArrayBuffer|Buffer|TypedArray|DataView}
279 * `spkac` {string|ArrayBuffer|Buffer|TypedArray|DataView}
567 * `buffer` {string|ArrayBuffer|Buffer|TypedArray|DataView}
615 * `data` {string|Buffer|TypedArray|DataView}
623 argument is not given, `data` must be a [`Buffer`][], `TypedArray`, or
624 `DataView`. If `data` is a [`Buffer`][], `TypedArray`, or `DataView`, then
[all …]
Dwebcrypto.md388 * `typedArray` {Buffer|TypedArray}
389 * Returns: {Buffer|TypedArray}
394 The given `typedArray` must be an integer-based instance of {TypedArray},
540 * `data`: {ArrayBuffer|TypedArray|DataView|Buffer}
641 * `data`: {ArrayBuffer|TypedArray|DataView|Buffer}
783 * `keyData`: {ArrayBuffer|TypedArray|DataView|Buffer|Object}
837 * `data`: {ArrayBuffer|TypedArray|DataView|Buffer}
863 * `wrappedKey`: {ArrayBuffer|TypedArray|DataView|Buffer}
925 * `signature`: {ArrayBuffer|TypedArray|DataView|Buffer}
926 * `data`: {ArrayBuffer|TypedArray|DataView|Buffer}
[all …]
/third_party/typescript/tests/cases/compiler/
DunionWithIndexSignature.ts18 export type TypedArray = Int32Array | Uint8Array; alias
24 export function flatten<T extends number|TypedArray>(arr: T) {
/third_party/skia/experimental/tskit/interface/
Dmemory.ts8 export const copy1dArray = (arr: number[] | public_api.TypedArray | null,
19 export const freeIfNecessary = (ptr: number, arr: any[] | public_api.TypedArray): void => {
/third_party/node/deps/v8/src/builtins/
Dtyped-array-entries.tq8 const kBuiltinNameEntries: constexpr string = '%TypedArray%.prototype.entries';
10 // %TypedArray%.entries ()
Dtyped-array-values.tq8 const kBuiltinNameValues: constexpr string = '%TypedArray%.prototype.values';
10 // %TypedArray%.values ()
Dtyped-array-keys.tq8 const kBuiltinNameKeys: constexpr string = '%TypedArray%.prototype.keys';
10 // %TypedArray%.keys ()
Dtyped-array-from.tq8 const kBuiltinNameFrom: constexpr string = '%TypedArray%.from';
18 // %TypedArray%.from ( source [ , mapfn [ , thisArg ] ] )
43 // from a JSArray into a TypedArray, so we use that when possible. We only
68 // returning the values in the TypedArray sequentially from index 0 to
117 // Source is a TypedArray with unmodified iterator behavior. Use the
Dtyped-array-of.tq8 const kBuiltinNameOf: constexpr string = '%TypedArray%.of';
10 // %TypedArray%.of ( ...items )
Dtyped-array-subarray.tq6 // ES %TypedArray%.prototype.subarray
10 const methodName: constexpr string = '%TypedArray%.prototype.subarray';
/third_party/node/typings/
Dprimordials.d.ts22 type TypedArrayContentType<T extends TypedArray> = T extends { [k: number]: infer V } ? V : never;
459 export function TypedArrayFrom<T extends TypedArray>(
465 export function TypedArrayFrom<T extends TypedArray, U, THIS_ARG = undefined>(
475 export function TypedArrayOf<T extends TypedArray>(
479 export function TypedArrayOfApply<T extends TypedArray>(
483 export const TypedArrayPrototypeGetBuffer: UncurryGetter<TypedArray, "buffer">;
484 export const TypedArrayPrototypeGetByteLength: UncurryGetter<TypedArray, "byteLength">;
485 export const TypedArrayPrototypeGetByteOffset: UncurryGetter<TypedArray, "byteOffset">;
486 export const TypedArrayPrototypeGetLength: UncurryGetter<TypedArray, "length">;
Dglobals.d.ts1 declare type TypedArray = alias
/third_party/skia/modules/canvaskit/
DWasmCommon.h24 using TypedArray = emscripten::val; variable
64 template <typename T> TypedArray MakeTypedArray(int count, const T src[]) { in MakeTypedArray()
/third_party/node/test/parallel/
Dtest-v8-serdes.js259 /^TypeError: source must be a TypedArray or a DataView$/,
263 /^TypeError: buffer must be a TypedArray or a DataView$/,
267 /^TypeError: buffer must be a TypedArray or a DataView$/,
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DWaveformView.java21 import android.content.res.TypedArray;
48 TypedArray a = context.getTheme().obtainStyledAttributes(attrs, in WaveformView()
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/util/
DSkottieView.java12 import android.content.res.TypedArray;
125 TypedArray a = context.getTheme() in SkottieView()

12345