Lines Matching refs:pos
166 StringPieceDetail<std::string>::size_type pos);
170 StringPieceDetail<std::string>::size_type pos);
174 StringPieceDetail<std::string>::size_type pos);
178 StringPieceDetail<std::string>::size_type pos);
182 StringPieceDetail<std::string>::size_type pos);
186 StringPieceDetail<std::string>::size_type pos);
190 StringPieceDetail<std::string>::size_type pos);
194 StringPieceDetail<std::string>::size_type pos);
198 StringPieceDetail<std::string>::size_type pos);
202 StringPieceDetail<std::string>::size_type pos);
206 StringPieceDetail<std::string>::size_type pos);
210 StringPieceDetail<std::string>::size_type pos);
212 StringPieceDetail<std::string>::size_type pos,
283 size_type copy(char* buf, size_type n, size_type pos = 0) const {
284 return internal::copy(*this, buf, n, pos);
287 size_type find(const BasicStringPiece& s, size_type pos = 0) const {
288 return internal::find(*this, s, pos);
291 size_type find(char c, size_type pos = 0) const {
292 return internal::find(*this, c, pos);
295 size_type rfind(const BasicStringPiece& s, size_type pos = npos) const {
296 return internal::rfind(*this, s, pos);
299 size_type rfind(char c, size_type pos = npos) const {
300 return internal::rfind(*this, c, pos);
303 size_type find_first_of(const BasicStringPiece& s, size_type pos = 0) const {
304 return internal::find_first_of(*this, s, pos);
307 size_type find_first_of(char c, size_type pos = 0) const {
308 return find(c, pos);
312 size_type pos = 0) const {
313 return internal::find_first_not_of(*this, s, pos);
316 size_type find_first_not_of(char c, size_type pos = 0) const {
317 return internal::find_first_not_of(*this, c, pos);
321 size_type pos = npos) const {
322 return internal::find_last_of(*this, s, pos);
325 size_type find_last_of(char c, size_type pos = npos) const {
326 return rfind(c, pos);
330 size_type pos = npos) const {
331 return internal::find_last_not_of(*this, s, pos);
334 size_type find_last_not_of(char c, size_type pos = npos) const {
335 return internal::find_last_not_of(*this, c, pos);
338 BasicStringPiece substr(size_type pos, size_type n = npos) const {
339 return internal::substr(*this, pos, n);