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

  /external/chromium/base/
vlog_unittest.cc 30 TEST_F(VlogTest, MatchVlogPattern) {
32 EXPECT_TRUE(MatchVlogPattern("", ""));
33 EXPECT_TRUE(MatchVlogPattern("", "****"));
34 EXPECT_FALSE(MatchVlogPattern("", "x"));
35 EXPECT_FALSE(MatchVlogPattern("x", ""));
38 EXPECT_TRUE(MatchVlogPattern("blah", "blah"));
41 EXPECT_TRUE(MatchVlogPattern("blah", "bl?h"));
42 EXPECT_FALSE(MatchVlogPattern("blh", "bl?h"));
43 EXPECT_FALSE(MatchVlogPattern("blaah", "bl?h"));
44 EXPECT_TRUE(MatchVlogPattern("blah", "?lah"))
    [all...]
vlog.h 74 BASE_API bool MatchVlogPattern(const base::StringPiece& string,
vlog.cc 108 if (MatchVlogPattern(target, it->pattern))
124 bool MatchVlogPattern(const base::StringPiece& string,
168 if (MatchVlogPattern(s, p))
  /external/chromium_org/base/
vlog_unittest.cc 35 TEST(VlogTest, MatchVlogPattern) {
37 EXPECT_TRUE(MatchVlogPattern("", ""));
38 EXPECT_TRUE(MatchVlogPattern("", "****"));
39 EXPECT_FALSE(MatchVlogPattern("", "x"));
40 EXPECT_FALSE(MatchVlogPattern("x", ""));
43 EXPECT_TRUE(MatchVlogPattern("blah", "blah"));
46 EXPECT_TRUE(MatchVlogPattern("blah", "bl?h"));
47 EXPECT_FALSE(MatchVlogPattern("blh", "bl?h"));
48 EXPECT_FALSE(MatchVlogPattern("blaah", "bl?h"));
49 EXPECT_TRUE(MatchVlogPattern("blah", "?lah"))
    [all...]
vlog.h 73 BASE_EXPORT bool MatchVlogPattern(const base::StringPiece& string,
vlog.cc 108 if (MatchVlogPattern(target, it->pattern))
124 bool MatchVlogPattern(const base::StringPiece& string,
168 if (MatchVlogPattern(s, p))

Completed in 378 milliseconds