HomeSort by relevance Sort by last modified time
    Searched refs:MatchVlogPattern (Results 1 - 3 of 3) sorted by null

  /external/libchrome/base/
vlog_unittest.cc 33 TEST(VlogTest, MatchVlogPattern) {
35 EXPECT_TRUE(MatchVlogPattern("", ""));
36 EXPECT_TRUE(MatchVlogPattern("", "****"));
37 EXPECT_FALSE(MatchVlogPattern("", "x"));
38 EXPECT_FALSE(MatchVlogPattern("x", ""));
41 EXPECT_TRUE(MatchVlogPattern("blah", "blah"));
44 EXPECT_TRUE(MatchVlogPattern("blah", "bl?h"));
45 EXPECT_FALSE(MatchVlogPattern("blh", "bl?h"));
46 EXPECT_FALSE(MatchVlogPattern("blaah", "bl?h"));
47 EXPECT_TRUE(MatchVlogPattern("blah", "?lah"))
    [all...]
vlog.h 72 BASE_EXPORT bool MatchVlogPattern(const base::StringPiece& string,
vlog.cc 112 if (MatchVlogPattern(target, it->pattern))
128 bool MatchVlogPattern(const base::StringPiece& string,
172 if (MatchVlogPattern(s, p))

Completed in 395 milliseconds