Home | History | Annotate | Download | only in tests

Lines Matching refs:input_

108   const std::string& input_;
150 : input_(input),
176 // We have parsed all the contents in |input_| successfully, but there are
199 input_cursor_ = input_.find_first_not_of(kWhitespaceChars, input_cursor_);
201 if (input_cursor_ >= input_.size())
204 if (StartsWith(Range(&input_[0] + input_cursor_,
205 &input_[0] + input_.size()),
208 input_cursor_ = input_.find_first_of(kEndOfLineChars, input_cursor_);
210 range->first = &input_[0] + input_cursor_;
211 input_cursor_ = input_.find_first_of(kItemDelimiters, input_cursor_);
212 range->second = input_cursor_ >= input_.size() ?
213 &input_[0] + input_.size() : &input_[0] + input_cursor_;