Home
last modified time | relevance | path

Searched refs:LTrimAll (Results 1 – 3 of 3) sorted by relevance

/system/tools/hidl/test/host_utils_test/
Dmain.cpp83 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/
DStringHelper.h69 static std::string LTrimAll(const std::string &in, const std::string &prefix);
/system/tools/hidl/host_utils/
DStringHelper.cpp78 copy = LTrimAll(copy, "_"); in Tokenize()
199 std::string StringHelper::LTrimAll(const std::string &in, const std::string &prefix) { in LTrimAll() function in android::StringHelper