Home
last modified time | relevance | path

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

/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/node/deps/npm/node_modules/is-typedarray/
Dindex.js1 module.exports = isTypedArray
2 isTypedArray.strict = isStrictTypedArray
3 isTypedArray.loose = isLooseTypedArray
18 function isTypedArray(arr) { function
DREADME.md10 ### isTypedArray(array)
/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.js8 function isTypedArray(value) { function
59 isTypedArray, property
Dinspect.js115 isTypedArray,
847 } else if (isTypedArray(value)) {
/third_party/node/lib/internal/console/
Dconstructor.js59 isTypedArray, isSet, isMap, isSetIterator, isMapIterator,
660 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/
DUtils.ts69 export function isTypedArray(tsType: TypeNode | undefined): boolean { function
321 …if (checkType === CheckType.Array && (isGenericArrayType(tsType) || isTypedArray(tsTypeNode))) ret…
DTypeScriptLinter.ts1403 …!Utils.isLibraryType(tsElemAccessBaseExprType) && !Utils.isTypedArray(tsElemAccessBaseExprTypeNode…
1749 Utils.isTypedArray(spreadExprTypeNode) ||
/third_party/node/deps/npm/node_modules/request/
Drequest.js18 var isTypedArray = require('is-typedarray').strict variable
420 if (isTypedArray(self.body)) {
/third_party/node/doc/api/
Dutil.md1903 ### `util.types.isTypedArray(value)`
1914 util.types.isTypedArray(new ArrayBuffer()); // Returns false
1915 util.types.isTypedArray(new Uint8Array()); // Returns true
1916 util.types.isTypedArray(new Float64Array()); // Returns true
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts7686 function isTypedArray(tsType: TypeNode | undefined): boolean;
Dtsserverlibrary.d.ts11469 function isTypedArray(tsType: TypeNode | undefined): boolean;
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp154974 bool isTypedArray=IsBaseOf<AllTypedArraysBase, T>::value,