Home
last modified time | relevance | path

Searched refs:DexToHexString (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/commonlibrary/c_utils/base/test/unittest/common/
H A Dutils_string_test.cpp647 string result = DexToHexString(0);
650 result = DexToHexString(14);
653 result = DexToHexString(14, false);
656 result = DexToHexString(-14, false);
659 result = DexToHexString(-14);
662 result = DexToHexString(11259375);
665 result = DexToHexString(11259375, false);
/ohos5.0/commonlibrary/c_utils/base/test/benchmarktest/string_benchmark_test/
H A Dstring_benchmark_test.cpp736 string result = DexToHexString(zeroValue); in BENCHMARK_F()
740 result = DexToHexString(positiveValue); in BENCHMARK_F()
743 result = DexToHexString(positiveValue, false); in BENCHMARK_F()
747 result = DexToHexString(negativeValue, false); in BENCHMARK_F()
750 result = DexToHexString(negativeValue); in BENCHMARK_F()
754 result = DexToHexString(largeValue); in BENCHMARK_F()
757 result = DexToHexString(largeValue, false); in BENCHMARK_F()
/ohos5.0/base/hiviewdfx/hiview/base/utility/test/unittest/common/
H A Dbase_utility_unit_test.cpp107 auto ret = StringUtil::DexToHexString(intVal1, true);
109 ret = StringUtil::DexToHexString(intVal1, false);
111 ret = StringUtil::DexToHexString(intVal2, true);
113 ret = StringUtil::DexToHexString(intVal2, false);
/ohos5.0/commonlibrary/c_utils/base/test/fuzztest/string_fuzzer/
H A Dstring_fuzzer.cpp41 DexToHexString(value, upper); in StringTestFunc()
/ohos5.0/commonlibrary/c_utils/base/include/
H A Dstring_ex.h86 std::string DexToHexString(int value, bool upper = true);
/ohos5.0/commonlibrary/c_utils/docs/zh-cn/
H A Dc-utils-guide-string.md15 | std::string | **DexToHexString**(int value, bool upper = true)<br>将十进制数字转换为十六进制表示的字符串。 |
/ohos5.0/base/hiviewdfx/hiview/base/utility/include/
H A Dstring_util.h102 std::string DexToHexString(int value, bool upper = true);
/ohos5.0/commonlibrary/c_utils/base/src/
H A Dstring_ex.cpp81 string DexToHexString(int value, bool upper /*= true*/) in DexToHexString() function
/ohos5.0/base/hiviewdfx/hiview/base/utility/
H A Dstring_util.cpp137 string DexToHexString(int value, bool upper) in DexToHexString() function
/ohos5.0/base/account/os_account/services/accountmgr/src/
H A Dohos_account_manager.cpp141 ohosUidStr.append(DexToHexString(newId[i], true)); in GenerateDVID()