Home
last modified time | relevance | path

Searched refs:LTrim (Results 1 – 7 of 7) sorted by relevance

/system/tools/hidl/test/host_utils_test/
Dmain.cpp61 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/
DStringHelper.h63 static std::string LTrim(const std::string &in, const std::string &prefix);
/system/tools/hidl/lint/lints/
DmethodDocComment.cpp39 line = StringHelper::LTrim(line, prefix); in getFirstWordAfterPrefix()
/system/tools/hidl/
DCoordinator.cpp205 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()
Dhidl-gen_l.ll88 str = StringHelper::LTrim(str, "/");
Dmain.cpp1261 return StringHelper::LTrim(fqName.name(), "types.") + ".java"; in __anon226c43a01802()
/system/tools/hidl/host_utils/
DStringHelper.cpp215 std::string StringHelper::LTrim(const std::string &in, const std::string &prefix) { in LTrim() function in android::StringHelper