Home
last modified time | relevance | path

Searched refs:StringToNumber (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stub_list.h188 V(StringToNumber) \
Druntime_stubs.h146 static JSTaggedValue StringToNumber(JSTaggedType numberString, int32_t radix);
Druntime_stubs.cpp3840 return base::NumberHelper::StringToNumber(*numberString, radix).GetRawData(); in DEF_RUNTIME_STUBS()
3865 JSTaggedValue RuntimeStubs::StringToNumber(JSTaggedType numberString, int32_t radix) in StringToNumber() function in panda::ecmascript::RuntimeStubs
3869 return base::NumberHelper::StringToNumber(input, radix); in StringToNumber()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_number.cpp198 return NumberHelper::StringToNumber(*numberString, radix); in ParseInt()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_number_stub_builder.cpp81 *result = CallNGCRuntime(glue_, RTSTUB_ID(StringToNumber), { msg, *radix }); in ParseInt()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcall_signature.h594 V(StringToNumber) \
Dcommon_stubs.cpp99 result = CallNGCRuntime(glue, RTSTUB_ID(StringToNumber), {result, Int32(0)}, charCode); in GenerateCircuit()
113 result = CallNGCRuntime(glue, RTSTUB_ID(StringToNumber), {result, Int32(0)}, charCode); in GenerateCircuit()
Dmcr_circuit_builder.cpp1713 GateRef CircuitBuilder::StringToNumber(GateRef gate, GateRef value, GateRef radix, GateRef glue) in StringToNumber() function in panda::ecmascript::kungfu::CircuitBuilder
1715 …return CallNGCRuntime(glue, RTSTUB_ID(StringToNumber), Gate::InvalidGateRef, { value, radix }, gat… in StringToNumber()
Dcircuit_builder.h804 GateRef StringToNumber(GateRef gate, GateRef value, GateRef radix, GateRef glue);
Dcall_signature.cpp1742 DEF_CALL_SIGNATURE(StringToNumber) in DEF_CALL_SIGNATURE() argument
Dtyped_native_inline_lowering.cpp2017 result = builder_.CallNGCRuntime(glue, RTSTUB_ID(StringToNumber), Gate::InvalidGateRef, in LowerNumberParseInt()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value.h390 static JSTaggedNumber StringToNumber(JSTaggedValue tagged);
Djs_tagged_value.cpp107 return StringToNumber(tagged); in ToNumber()
1680 JSTaggedNumber JSTaggedValue::StringToNumber(JSTaggedValue tagged) in StringToNumber() function in panda::ecmascript::JSTaggedValue
/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp558 JSTaggedValue NumberHelper::StringToNumber(EcmaString *string, int32_t radix) in StringToNumber() function in panda::ecmascript::base::NumberHelper
/arkcompiler/ets_runtime/ecmascript/tests/
Dtagged_value_test.cpp219 HWTEST_F_L0(JSTaggedValueTest, StringToNumber) in HWTEST_F_L0() argument