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

  /build/kati/
strutil.cc 174 : pat_(pat), percent_index_(pat.find('%')) {
178 if (percent_index_ == string::npos)
184 return (HasPrefix(str, pat_.substr(0, percent_index_)) &&
185 HasSuffix(str, pat_.substr(percent_index_ + 1)));
191 return str.substr(percent_index_,
192 str.size() - (pat_.size() - percent_index_ - 1));
197 if (percent_index_ == string::npos) {
214 AppendString(str.substr(percent_index_,
225 if (percent_index_ != string::npos && subst.find('%') != string::npos) {
strutil.h 110 size_t percent_index_; member in class:Pattern

Completed in 127 milliseconds