Home
last modified time | relevance | path

Searched refs:IntToString (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/tests/
Dnumber_helper_test.cpp630 HWTEST_F_L0(NumberHelperTest, IntToString) in HWTEST_F_L0() argument
632 EXPECT_STREQ(NumberHelper::IntToString(0).c_str(), "0"); in HWTEST_F_L0()
633 EXPECT_STREQ(NumberHelper::IntToString(-100).c_str(), "-100"); in HWTEST_F_L0()
634 EXPECT_STREQ(NumberHelper::IntToString(123).c_str(), "123"); in HWTEST_F_L0()
635 EXPECT_STREQ(NumberHelper::IntToString(1234).c_str(), "1234"); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stub_list.h222 V(IntToString) \
Druntime_stubs.cpp3773 DEF_RUNTIME_STUBS(IntToString) in DEF_RUNTIME_STUBS() argument
3775 RUNTIME_STUBS_HEADER(IntToString); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp684 CString NumberHelper::IntToString(int number) in IntToString() function in panda::ecmascript::base::NumberHelper
705 return factory->NewFromASCII(IntToString(static_cast<int32_t>(d))); in DoubleToEcmaString()
Djson_stringifier.cpp369 str = NumberHelper::IntToString(static_cast<int32_t>(key->GetInt())); in SerializeObjectKey()
Dfast_json_stringifier.cpp173 str = NumberHelper::IntToString(static_cast<int32_t>(key->GetInt())); in SerializeObjectKey()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.cpp9295 result = CallRuntime(glue, RTSTUB_ID(IntToString), { IntToTaggedInt(*n) }); in IntToEcmaString()