Home | History | Annotate | Download | only in base

Lines Matching refs:pos_

39   while (pos_ != StringPiece::npos) {
41 pos_ = str_.find(kPEMSearchBlock, pos_);
42 if (pos_ == StringPiece::npos)
48 if (!str_.substr(pos_).starts_with(it->header))
53 StringPiece::size_type footer_pos = str_.find(it->footer, pos_);
55 pos_ = StringPiece::npos;
60 StringPiece::size_type data_begin = pos_ + it->header.size();
61 pos_ = footer_pos + it->footer.size();
77 // continue the search. Otherwise, |pos_| has been updated to the most
81 pos_ += sizeof(kPEMSearchBlock);
91 pos_ = 0;