Lines Matching refs:StringPiece
88 base::StringPiece GetModule(const base::StringPiece& file) {
89 base::StringPiece module(file);
90 base::StringPiece::size_type last_slash_pos =
92 if (last_slash_pos != base::StringPiece::npos)
94 base::StringPiece::size_type extension_start = module.rfind('.');
105 int VlogInfo::GetVlogLevel(const base::StringPiece& file) const {
107 base::StringPiece module(GetModule(file));
110 base::StringPiece target(
128 bool MatchVlogPattern(const base::StringPiece& string,
129 const base::StringPiece& vlog_pattern) {
130 base::StringPiece p(vlog_pattern);
131 base::StringPiece s(string);