Searched refs:LTrimAll (Results 1 – 5 of 5) sorted by relevance
/system/tools/hidl/test/host_utils_test/ |
D | main.cpp | 83 EXPECT_EQ("", StringHelper::LTrimAll("", "")); in TEST_F() 84 EXPECT_EQ("", StringHelper::LTrimAll("", "a")); in TEST_F() 85 EXPECT_EQ("", StringHelper::LTrimAll("", "ab")); in TEST_F() 86 EXPECT_EQ("", StringHelper::LTrimAll("a", "a")); in TEST_F() 87 EXPECT_EQ("", StringHelper::LTrimAll("aa", "a")); in TEST_F() 88 EXPECT_EQ("b", StringHelper::LTrimAll("b", "a")); in TEST_F() 89 EXPECT_EQ("b", StringHelper::LTrimAll("aaab", "a")); in TEST_F() 90 EXPECT_EQ("c", StringHelper::LTrimAll("ababc", "ab")); in TEST_F() 91 EXPECT_EQ("ac", StringHelper::LTrimAll("abac", "ab")); in TEST_F()
|
/system/tools/hidl/host_utils/include/hidl-util/ |
D | StringHelper.h | 69 static std::string LTrimAll(const std::string &in, const std::string &prefix);
|
/system/tools/hidl/lint/lints/ |
D | methodDocComment.cpp | 47 line = StringHelper::LTrimAll(line, " "); in getFirstWordAfterPrefix()
|
/system/tools/hidl/host_utils/ |
D | StringHelper.cpp | 236 std::string StringHelper::LTrimAll(const std::string &in, const std::string &prefix) { in LTrimAll() function in android::StringHelper
|
/system/tools/hidl/ |
D | hidl-gen_l.ll | 90 str = StringHelper::LTrimAll(str, "*");
|