Searched refs:LTrim (Results 1 – 7 of 7) sorted by relevance
/system/tools/hidl/test/host_utils_test/ |
D | main.cpp | 61 EXPECT_EQ("", StringHelper::LTrim("", "")); in TEST_F() 62 EXPECT_EQ("", StringHelper::LTrim("", "a")); in TEST_F() 63 EXPECT_EQ("", StringHelper::LTrim("a", "a")); in TEST_F() 64 EXPECT_EQ("a", StringHelper::LTrim("a", "")); in TEST_F() 65 EXPECT_EQ("a", StringHelper::LTrim("a", "b")); in TEST_F() 66 EXPECT_EQ("a", StringHelper::LTrim("ba", "b")); in TEST_F() 67 EXPECT_EQ("f", StringHelper::LTrim("abcdef", "abcde")); in TEST_F() 68 EXPECT_EQ("cdef", StringHelper::LTrim("abcdef", "ab")); in TEST_F() 69 EXPECT_EQ("abcdef", StringHelper::LTrim("abcdef", "")); in TEST_F()
|
/system/tools/hidl/host_utils/include/hidl-util/ |
D | StringHelper.h | 63 static std::string LTrim(const std::string &in, const std::string &prefix);
|
/system/tools/hidl/lint/lints/ |
D | methodDocComment.cpp | 39 line = StringHelper::LTrim(line, prefix); in getFirstWordAfterPrefix()
|
/system/tools/hidl/ |
D | Coordinator.cpp | 205 out << StringHelper::LTrim(forFile, mOutputPath) << ": \\\n"; in writeDepFile() 394 return StringHelper::LTrim(filename, mRootPath); in makeRelative() 422 std::string suffix = StringHelper::LTrim(fqName.package(), packageRoot->root.package()); in getPackagePath() 423 suffix = StringHelper::LTrim(suffix, "."); in getPackagePath()
|
D | hidl-gen_l.ll | 88 str = StringHelper::LTrim(str, "/");
|
D | main.cpp | 1261 return StringHelper::LTrim(fqName.name(), "types.") + ".java"; in __anon226c43a01802()
|
/system/tools/hidl/host_utils/ |
D | StringHelper.cpp | 215 std::string StringHelper::LTrim(const std::string &in, const std::string &prefix) { in LTrim() function in android::StringHelper
|