Searched refs:DexToHexString (Results 1 – 10 of 10) sorted by relevance
/ohos5.0/commonlibrary/c_utils/base/test/unittest/common/ |
H A D | utils_string_test.cpp | 647 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 D | string_benchmark_test.cpp | 736 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 D | base_utility_unit_test.cpp | 107 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 D | string_fuzzer.cpp | 41 DexToHexString(value, upper); in StringTestFunc()
|
/ohos5.0/commonlibrary/c_utils/base/include/ |
H A D | string_ex.h | 86 std::string DexToHexString(int value, bool upper = true);
|
/ohos5.0/commonlibrary/c_utils/docs/zh-cn/ |
H A D | c-utils-guide-string.md | 15 | std::string | **DexToHexString**(int value, bool upper = true)<br>将十进制数字转换为十六进制表示的字符串。 |
|
/ohos5.0/base/hiviewdfx/hiview/base/utility/include/ |
H A D | string_util.h | 102 std::string DexToHexString(int value, bool upper = true);
|
/ohos5.0/commonlibrary/c_utils/base/src/ |
H A D | string_ex.cpp | 81 string DexToHexString(int value, bool upper /*= true*/) in DexToHexString() function
|
/ohos5.0/base/hiviewdfx/hiview/base/utility/ |
H A D | string_util.cpp | 137 string DexToHexString(int value, bool upper) in DexToHexString() function
|
/ohos5.0/base/account/os_account/services/accountmgr/src/ |
H A D | ohos_account_manager.cpp | 141 ohosUidStr.append(DexToHexString(newId[i], true)); in GenerateDVID()
|