Home | History | Annotate | Download | only in extensions

Lines Matching refs:glob

25   for (std::vector<std::string>::const_iterator glob = globs->begin();
26 glob != globs->end(); ++glob) {
27 if (MatchPattern(url.spec(), *glob))
115 std::vector<std::string>::const_iterator glob;
117 for (glob = globs_.begin(); glob != globs_.end(); ++glob) {
118 pickle->WriteString(*glob);
121 for (glob = exclude_globs_.begin(); glob != exclude_globs_.end(); ++glob) {
122 pickle->WriteString(*glob);
165 std::string glob;
166 CHECK(pickle.ReadString(iter, &glob));
167 globs_.push_back(glob);
173 std::string glob;
174 CHECK(pickle.ReadString(iter, &glob));
175 exclude_globs_.push_back(glob);