Home
last modified time | relevance | path

Searched refs:isTypedArray (Results 1 – 25 of 26) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DunionWithIndexSignature.js19 export function isTypedArray(a: {}): a is Int32Array | Uint8Array {
24 if (isTypedArray(arr)) {
33 exports.flatten = exports.isTypedArray = exports.foo = void 0;
38 function isTypedArray(a) { function
41 exports.isTypedArray = isTypedArray;
43 if (isTypedArray(arr)) {
DunionWithIndexSignature.types33 export function isTypedArray(a: {}): a is Int32Array | Uint8Array {
34 >isTypedArray : (a: {}) => a is Int32Array | Uint8Array
51 if (isTypedArray(arr)) {
52 >isTypedArray(arr) : boolean
53 >isTypedArray : (a: {}) => a is Int32Array | Uint8Array
DunionWithIndexSignature.symbols43 export function isTypedArray(a: {}): a is Int32Array | Uint8Array {
44 >isTypedArray : Symbol(isTypedArray, Decl(unionWithIndexSignature.ts, 15, 49))
64 if (isTypedArray(arr)) {
65 >isTypedArray : Symbol(isTypedArray, Decl(unionWithIndexSignature.ts, 15, 49))
/third_party/typescript/tests/cases/compiler/
DunionWithIndexSignature.ts20 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { function
25 if (isTypedArray(arr)) {
/third_party/node/lib/internal/util/
Dtypes.js9 function isTypedArray(value) { function
60 isTypedArray, property
Dinspect.js145 isTypedArray,
913 } else if (isTypedArray(value)) {
/third_party/node/typings/internalBinding/
Dtypes.d.ts21 isTypedArray: (value: unknown) => value is TypedArray;
/third_party/node/deps/undici/src/lib/fetch/
Dwebidl.js552 !types.isTypedArray(V) ||
622 if (types.isTypedArray(V)) {
Dfile.js286 types.isTypedArray(element)
Dresponse.js518 types.isTypedArray(V) ||
/third_party/node/lib/internal/crypto/
Drandom.js60 isTypedArray,
320 if (!isTypedArray(data) ||
/third_party/node/lib/
Dbuffer.js93 isTypedArray,
349 if (!isTypedArray(view)) {
1369 if (isTypedArray(input) || isAnyArrayBuffer(input)) {
1377 if (isTypedArray(input) || isAnyArrayBuffer(input)) {
/third_party/node/lib/internal/console/
Dconstructor.js63 isTypedArray, isSet, isMap, isSetIterator, isMapIterator,
678 const isArray = (v) => ArrayIsArray(v) || isTypedArray(v) || isBuffer(v);
/third_party/node/test/parallel/
Dtest-util-types.js216 isTypedArray: [ property
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_util.js490 this.isTypedArray = function (...args) { method
/third_party/typescript/src/linter/ArkTSLinter_1_0/
DUtils.ts74 export function isTypedArray(tsType: TypeNode | undefined): boolean { function
330 …if (checkType === CheckType.Array && (isGenericArrayType(tsType) || isTypedArray(tsTypeNode))) ret…
DTypeScriptLinter.ts1431 …!Utils.isLibraryType(tsElemAccessBaseExprType) && !Utils.isTypedArray(tsElemAccessBaseExprTypeNode…
1777 Utils.isTypedArray(spreadExprTypeNode) ||
/third_party/typescript/src/linter/ArkTSLinter_1_1/
DUtils.ts454 export function isTypedArray(tsType: ts.Type): boolean { function
464 return isGenericArrayType(tsType) || isReadonlyArrayType(tsType) || isTypedArray(tsType);
/third_party/node/doc/api/
Dutil.md2700 ### `util.types.isTypedArray(value)`
2712 util.types.isTypedArray(new ArrayBuffer()); // Returns false
2713 util.types.isTypedArray(new Uint8Array()); // Returns true
2714 util.types.isTypedArray(new Float64Array()); // Returns true
/third_party/node/deps/undici/
Dundici.js4015 } else if (types.isAnyArrayBuffer(element) || types.isTypedArray(element)) {
4903 if (types.isAnyArrayBuffer(V) || types.isTypedArray(V) || types.isDataView(V)) {
/third_party/typescript/lib/
Dtypescript.d.ts8618 function isTypedArray(tsType: TypeNode | undefined): boolean;
9261 function isTypedArray(tsType: ts.Type): boolean;
DtypescriptServices.d.ts8618 function isTypedArray(tsType: TypeNode | undefined): boolean;
9261 function isTypedArray(tsType: ts.Type): boolean;
Dtsserverlibrary.d.ts12557 function isTypedArray(tsType: TypeNode | undefined): boolean;
13200 function isTypedArray(tsType: ts.Type): boolean;
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts8618 function isTypedArray(tsType: TypeNode | undefined): boolean;
9261 function isTypedArray(tsType: ts.Type): boolean;
Dtsserverlibrary.d.ts12557 function isTypedArray(tsType: TypeNode | undefined): boolean;
13200 function isTypedArray(tsType: ts.Type): boolean;

12