Home
last modified time | relevance | path

Searched refs:LTrim (Results 1 – 5 of 5) 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/
DCoordinator.cpp176 mReadFiles.insert(StringHelper::LTrim(path, mRootPath)); in onFileAccess()
200 out << StringHelper::LTrim(forFile, mOutputPath) << ": \\\n"; in writeDepFile()
203 out << StringHelper::LTrim(file, mRootPath) << " \\\n"; in writeDepFile()
425 std::string suffix = StringHelper::LTrim(fqName.package(), packageRoot->root.package()); in getPackagePath()
426 suffix = StringHelper::LTrim(suffix, "."); in getPackagePath()
Dmain.cpp1110 return StringHelper::LTrim(fqName.name(), "types.") + ".java"; in __anon75b88c821702()
/system/tools/hidl/host_utils/
DStringHelper.cpp178 std::string StringHelper::LTrim(const std::string &in, const std::string &prefix) { in LTrim() function in android::StringHelper