Lines Matching refs:StringPiece
84 base::StringPiece GetModule(const base::StringPiece& file) {
85 base::StringPiece module(file);
86 base::StringPiece::size_type last_slash_pos =
88 if (last_slash_pos != base::StringPiece::npos)
90 base::StringPiece::size_type extension_start = module.rfind('.');
101 int VlogInfo::GetVlogLevel(const base::StringPiece& file) const {
103 base::StringPiece module(GetModule(file));
106 base::StringPiece target(
124 bool MatchVlogPattern(const base::StringPiece& string,
125 const base::StringPiece& vlog_pattern) {
126 base::StringPiece p(vlog_pattern);
127 base::StringPiece s(string);