Home | History | Annotate | Download | only in base

Lines Matching refs:str

86 template <class str, class const_iterator>
89 typedef typename str::value_type char_type;
99 StringTokenizerT(const str& string,
100 const str& delims) {
106 const str& delims) {
118 void set_quote_chars(const str& quotes) { quotes_ = quotes; }
158 str token() const { return str(token_begin_, token_end_); }
163 const str& delims) {
172 return delims_.find(c) != str::npos;
176 return quotes_.find(c) != str::npos;
208 str delims_;
209 str quotes_;