Home
last modified time | relevance | path

Searched refs:RTrimAll (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/tools/hidl/test/host_utils_test/
H A Dmain.cpp93 EXPECT_EQ("", StringHelper::RTrimAll("", "")); in TEST_F()
94 EXPECT_EQ("", StringHelper::RTrimAll("", "a")); in TEST_F()
95 EXPECT_EQ("", StringHelper::RTrimAll("", "ab")); in TEST_F()
96 EXPECT_EQ("", StringHelper::RTrimAll("a", "a")); in TEST_F()
97 EXPECT_EQ("", StringHelper::RTrimAll("aa", "a")); in TEST_F()
98 EXPECT_EQ("b", StringHelper::RTrimAll("b", "a")); in TEST_F()
99 EXPECT_EQ("b", StringHelper::RTrimAll("baaa", "a")); in TEST_F()
100 EXPECT_EQ("c", StringHelper::RTrimAll("cabab", "ab")); in TEST_F()
101 EXPECT_EQ("ca", StringHelper::RTrimAll("caba", "ba")); in TEST_F()
/aosp12/system/tools/hidl/host_utils/include/hidl-util/
H A DStringHelper.h66 static std::string RTrimAll(const std::string &in, const std::string &suffix);
/aosp12/system/tools/hidl/host_utils/
H A DStringHelper.cpp223 std::string StringHelper::RTrimAll(const std::string &in, const std::string &suffix) { in RTrimAll() function in android::StringHelper
/aosp12/system/tools/hidl/
H A Dhidl-gen_l.ll92 str = StringHelper::RTrimAll(str, "*");
H A DCoordinator.cpp430 components.push_back(StringHelper::RTrimAll(packageRoot->path, "/")); in getPackagePath()