Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Darray_bounds_check_elimination.cpp659 bool isTypedArray) in LoopInvariantMotionForIndexCheck() argument
681 length = builder_.InsertLoadArrayLength(array, isTypedArray); in LoopInvariantMotionForIndexCheck()
724 bool isTypedArray = false; in ProcessIndexCheck() local
726 isTypedArray = true; in ProcessIndexCheck()
749 … indexBound->UpperGate(), indexBound->Upper(), isTypedArray); in ProcessIndexCheck()
Darray_bounds_check_elimination.h142 GateRef upperGate, int upper, bool isTypedArray);
Dmcr_circuit_builder.cpp991 GateRef CircuitBuilder::InsertLoadArrayLength(GateRef array, bool isTypedArray) in InsertLoadArrayLength() argument
997 if (isTypedArray) { in InsertLoadArrayLength()
Dcircuit_builder.h488 GateRef InsertLoadArrayLength(GateRef array, bool isTypedArray);
/arkcompiler/ets_frontend/ets2panda/linter/src/utils/
DTsUtils.ts39 public isTypedArray(tsType: ts.TypeNode | undefined): boolean { method in TsUtils
290 …if (checkType == CheckType.Array && (this.isGenericArrayType(tsType) || this.isTypedArray(tsTypeNo…
/arkcompiler/ets_frontend/ets2panda/linter-4.2/src/
DUtils.ts306 public isTypedArray(tsType: ts.TypeNode | undefined): boolean { method in TsUtils
557 …if (checkType === CheckType.Array && (this.isGenericArrayType(tsType) || this.isTypedArray(tsTypeN…
DTypeScriptLinter.ts1606 !this.tsUtils.isTypedArray(tsElemAccessBaseExprTypeNode) &&
1972 this.tsUtils.isTypedArray(spreadExprTypeNode) ||
/arkcompiler/ets_frontend/ets2panda/linter/src/
DTypeScriptLinter.ts1317 …!this.tsUtils.isLibraryType(tsElemAccessBaseExprType) && !this.tsUtils.isTypedArray(tsElemAccessBa…
1655 … if (ts.isArrayTypeNode(spreadExprTypeNode) || this.tsUtils.isTypedArray(spreadExprTypeNode) ||