| /third_party/node/deps/undici/src/types/ |
| D | webidl.d.ts | 124 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/ |
| D | v8-typed-array.h | 20 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/ |
| D | typedArray-find-index.js | 35 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]);
|
| D | typedArray-find.js | 35 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/ |
| D | unionWithIndexSignature.types | 30 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
|
| D | unionWithIndexSignature.symbols | 38 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))
|
| D | unionWithIndexSignature.js | 17 export type TypedArray = Int32Array | Uint8Array; 23 export function flatten<T extends number|TypedArray>(arr: T) {
|
| /third_party/node/doc/api/ |
| D | zlib.md | 525 * `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 …]
|
| D | string_decoder.md | 66 * `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
|
| D | crypto.md | 101 * `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 …]
|
| D | webcrypto.md | 388 * `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/ |
| D | unionWithIndexSignature.ts | 18 export type TypedArray = Int32Array | Uint8Array; alias 24 export function flatten<T extends number|TypedArray>(arr: T) {
|
| /third_party/skia/experimental/tskit/interface/ |
| D | memory.ts | 8 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/ |
| D | typed-array-entries.tq | 8 const kBuiltinNameEntries: constexpr string = '%TypedArray%.prototype.entries'; 10 // %TypedArray%.entries ()
|
| D | typed-array-values.tq | 8 const kBuiltinNameValues: constexpr string = '%TypedArray%.prototype.values'; 10 // %TypedArray%.values ()
|
| D | typed-array-keys.tq | 8 const kBuiltinNameKeys: constexpr string = '%TypedArray%.prototype.keys'; 10 // %TypedArray%.keys ()
|
| D | typed-array-from.tq | 8 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
|
| D | typed-array-of.tq | 8 const kBuiltinNameOf: constexpr string = '%TypedArray%.of'; 10 // %TypedArray%.of ( ...items )
|
| D | typed-array-subarray.tq | 6 // ES %TypedArray%.prototype.subarray 10 const methodName: constexpr string = '%TypedArray%.prototype.subarray';
|
| /third_party/node/typings/ |
| D | primordials.d.ts | 22 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">;
|
| D | globals.d.ts | 1 declare type TypedArray = alias
|
| /third_party/skia/modules/canvaskit/ |
| D | WasmCommon.h | 24 using TypedArray = emscripten::val; variable 64 template <typename T> TypedArray MakeTypedArray(int count, const T src[]) { in MakeTypedArray()
|
| /third_party/node/test/parallel/ |
| D | test-v8-serdes.js | 259 /^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/ |
| D | WaveformView.java | 21 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/ |
| D | SkottieView.java | 12 import android.content.res.TypedArray; 125 TypedArray a = context.getTheme() in SkottieView()
|