/third_party/typescript/tests/baselines/reference/ |
D | unionWithIndexSignature.js | 19 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)) {
|
D | unionWithIndexSignature.types | 33 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
|
D | unionWithIndexSignature.symbols | 43 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/ |
D | unionWithIndexSignature.ts | 20 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { function 25 if (isTypedArray(arr)) {
|
/third_party/node/lib/internal/util/ |
D | types.js | 9 function isTypedArray(value) { function 60 isTypedArray, property
|
D | inspect.js | 145 isTypedArray, 913 } else if (isTypedArray(value)) {
|
/third_party/node/typings/internalBinding/ |
D | types.d.ts | 21 isTypedArray: (value: unknown) => value is TypedArray;
|
/third_party/node/deps/undici/src/lib/fetch/ |
D | webidl.js | 552 !types.isTypedArray(V) || 622 if (types.isTypedArray(V)) {
|
D | file.js | 286 types.isTypedArray(element)
|
D | response.js | 518 types.isTypedArray(V) ||
|
/third_party/node/lib/internal/crypto/ |
D | random.js | 60 isTypedArray, 320 if (!isTypedArray(data) ||
|
/third_party/node/lib/ |
D | buffer.js | 93 isTypedArray, 349 if (!isTypedArray(view)) { 1369 if (isTypedArray(input) || isAnyArrayBuffer(input)) { 1377 if (isTypedArray(input) || isAnyArrayBuffer(input)) {
|
/third_party/node/lib/internal/console/ |
D | constructor.js | 63 isTypedArray, isSet, isMap, isSetIterator, isMapIterator, 678 const isArray = (v) => ArrayIsArray(v) || isTypedArray(v) || isBuffer(v);
|
/third_party/node/test/parallel/ |
D | test-util-types.js | 216 isTypedArray: [ property
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_util.js | 490 this.isTypedArray = function (...args) { method
|
/third_party/typescript/src/linter/ArkTSLinter_1_0/ |
D | Utils.ts | 74 export function isTypedArray(tsType: TypeNode | undefined): boolean { function 330 …if (checkType === CheckType.Array && (isGenericArrayType(tsType) || isTypedArray(tsTypeNode))) ret…
|
D | TypeScriptLinter.ts | 1431 …!Utils.isLibraryType(tsElemAccessBaseExprType) && !Utils.isTypedArray(tsElemAccessBaseExprTypeNode… 1777 Utils.isTypedArray(spreadExprTypeNode) ||
|
/third_party/typescript/src/linter/ArkTSLinter_1_1/ |
D | Utils.ts | 454 export function isTypedArray(tsType: ts.Type): boolean { function 464 return isGenericArrayType(tsType) || isReadonlyArrayType(tsType) || isTypedArray(tsType);
|
/third_party/node/doc/api/ |
D | util.md | 2700 ### `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/ |
D | undici.js | 4015 } else if (types.isAnyArrayBuffer(element) || types.isTypedArray(element)) { 4903 if (types.isAnyArrayBuffer(V) || types.isTypedArray(V) || types.isDataView(V)) {
|
/third_party/typescript/lib/ |
D | typescript.d.ts | 8618 function isTypedArray(tsType: TypeNode | undefined): boolean; 9261 function isTypedArray(tsType: ts.Type): boolean;
|
D | typescriptServices.d.ts | 8618 function isTypedArray(tsType: TypeNode | undefined): boolean; 9261 function isTypedArray(tsType: ts.Type): boolean;
|
D | tsserverlibrary.d.ts | 12557 function isTypedArray(tsType: TypeNode | undefined): boolean; 13200 function isTypedArray(tsType: ts.Type): boolean;
|
/third_party/typescript/tests/baselines/reference/api/ |
D | typescript.d.ts | 8618 function isTypedArray(tsType: TypeNode | undefined): boolean; 9261 function isTypedArray(tsType: ts.Type): boolean;
|
D | tsserverlibrary.d.ts | 12557 function isTypedArray(tsType: TypeNode | undefined): boolean; 13200 function isTypedArray(tsType: ts.Type): boolean;
|