| /arkcompiler/ets_runtime/ecmascript/stubs/ |
| D | runtime_stub_list.h | 188 V(StringToNumber) \
|
| D | runtime_stubs.h | 146 static JSTaggedValue StringToNumber(JSTaggedType numberString, int32_t radix);
|
| D | runtime_stubs.cpp | 3840 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/ |
| D | builtins_number.cpp | 198 return NumberHelper::StringToNumber(*numberString, radix); in ParseInt()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
| D | builtins_number_stub_builder.cpp | 81 *result = CallNGCRuntime(glue_, RTSTUB_ID(StringToNumber), { msg, *radix }); in ParseInt()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | call_signature.h | 594 V(StringToNumber) \
|
| D | common_stubs.cpp | 99 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()
|
| D | mcr_circuit_builder.cpp | 1713 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()
|
| D | circuit_builder.h | 804 GateRef StringToNumber(GateRef gate, GateRef value, GateRef radix, GateRef glue);
|
| D | call_signature.cpp | 1742 DEF_CALL_SIGNATURE(StringToNumber) in DEF_CALL_SIGNATURE() argument
|
| D | typed_native_inline_lowering.cpp | 2017 result = builder_.CallNGCRuntime(glue, RTSTUB_ID(StringToNumber), Gate::InvalidGateRef, in LowerNumberParseInt()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_tagged_value.h | 390 static JSTaggedNumber StringToNumber(JSTaggedValue tagged);
|
| D | js_tagged_value.cpp | 107 return StringToNumber(tagged); in ToNumber() 1680 JSTaggedNumber JSTaggedValue::StringToNumber(JSTaggedValue tagged) in StringToNumber() function in panda::ecmascript::JSTaggedValue
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | number_helper.cpp | 558 JSTaggedValue NumberHelper::StringToNumber(EcmaString *string, int32_t radix) in StringToNumber() function in panda::ecmascript::base::NumberHelper
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| D | tagged_value_test.cpp | 219 HWTEST_F_L0(JSTaggedValueTest, StringToNumber) in HWTEST_F_L0() argument
|