Home
last modified time | relevance | path

Searched refs:numStr (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DmapOnTupleTypes01.ts62 let numStr: [number, string] = [ 100, "hello"];
63 AssertType(numStr, "[number, string]");
88 export let d = numStr.map(x => x);
90 AssertType(numStr.map(x => x), "(union)[]");
91 AssertType(numStr.map, "<U>((union, number, (union)[]) => U, ?any) => U[]");
/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.h183 static JSHandle<BigInt> SetBigInt(JSThread *thread, const CString &numStr,
Djs_bigint.cpp87 JSHandle<BigInt> BigIntHelper::SetBigInt(JSThread *thread, const CString &numStr, uint32_t currentR… in SetBigInt() argument
90 if (numStr[0] == '-') { in SetBigInt()
96 binaryStr = Conversion(numStr.substr(flag), BigInt::BINARY, currentRadix); in SetBigInt()
98 binaryStr = numStr.substr(flag); in SetBigInt()