Searched refs:IsHexDigits (Results 1 – 6 of 6) sorted by relevance
| /developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/ |
| D | utilities_test.cpp | 367 EXPECT_EQ(IsHexDigits(""), false); 368 EXPECT_EQ(IsHexDigits("1"), true); 369 EXPECT_EQ(IsHexDigits("12"), true); 370 EXPECT_EQ(IsHexDigits("1a"), true); 371 EXPECT_EQ(IsHexDigits("f1"), true); 372 EXPECT_EQ(IsHexDigits("1f2"), true); 373 EXPECT_EQ(IsHexDigits("a1f"), true); 374 EXPECT_EQ(IsHexDigits("g1"), false); 375 EXPECT_EQ(IsHexDigits("1g"), false); 376 EXPECT_EQ(IsHexDigits("_1"), false); [all …]
|
| /developtools/hiperf/test/unittest/common/native/ |
| D | utilities_test.cpp | 362 EXPECT_EQ(IsHexDigits(""), false); 363 EXPECT_EQ(IsHexDigits("1"), true); 364 EXPECT_EQ(IsHexDigits("12"), true); 365 EXPECT_EQ(IsHexDigits("1a"), true); 366 EXPECT_EQ(IsHexDigits("f1"), true); 367 EXPECT_EQ(IsHexDigits("1f2"), true); 368 EXPECT_EQ(IsHexDigits("a1f"), true); 369 EXPECT_EQ(IsHexDigits("g1"), false); 370 EXPECT_EQ(IsHexDigits("1g"), false); 371 EXPECT_EQ(IsHexDigits("_1"), false); [all …]
|
| /developtools/profiler/device/plugins/native_daemon/include/ |
| D | utilities.h | 182 bool IsHexDigits(const std::string &str);
|
| /developtools/hiperf/include/ |
| D | utilities.h | 184 bool IsHexDigits(const std::string &str);
|
| /developtools/profiler/device/plugins/native_daemon/src/ |
| D | utilities.cpp | 167 bool IsHexDigits(const std::string &str) in IsHexDigits() function
|
| /developtools/hiperf/src/ |
| D | utilities.cpp | 223 bool IsHexDigits(const std::string &str) in IsHexDigits() function
|