OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsPathPrefix
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/history/
url_utils.h
38
bool
IsPathPrefix
(const std::string& p1, const std::string& p2);
url_utils_unittest.cc
85
TEST(HistoryUrlUtilsTest,
IsPathPrefix
) {
99
EXPECT_TRUE(
IsPathPrefix
(true_cases[i].p1, true_cases[i].p2))
114
EXPECT_FALSE(
IsPathPrefix
(false_cases[i].p1, false_cases[i].p2))
url_utils.cc
50
bool
IsPathPrefix
(const std::string& p1, const std::string& p2) {
top_sites_cache.cc
96
!
IsPathPrefix
(base_url.path(), compare_url_lo.path())) {
107
if (
IsPathPrefix
(compare_url.path(), url.path()))
Completed in 227 milliseconds