Home | History | Annotate | Download | only in base

Lines Matching full:empty

51   if (!v_switch.empty()) {
102 if (!vmodule_levels_.empty()) {
129 while (!p.empty() && !s.empty() && (p[0] != '*')) {
151 // An empty pattern here matches only an empty string.
152 if (p.empty())
153 return s.empty();
157 while (!p.empty() && (p[0] == '*'))
160 // Since we moved past the stars, an empty pattern here matches
162 if (p.empty())
165 // Since we moved past the stars and p is non-empty, if some
166 // non-empty substring of s matches p, then we ourselves match.
167 while (!s.empty()) {