Searched defs:find_last_of (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DSmallString.h205 size_t find_last_of(char C, size_t From = StringRef::npos) const { function in class:llvm::SmallString
206 return str().find_last_of(C, From);
213 size_t find_last_of( function in class:llvm::SmallString
215 return str().find_last_of(Chars, From);
/external/libchrome/base/strings/
H A Dstring_piece.cc304 size_t find_last_of(const StringPiece& self, const StringPiece& s, size_t pos) { function in namespace:base::internal
324 size_t find_last_of(const StringPiece16& self, function in namespace:base::internal
H A Dstring_piece.h113 BASE_EXPORT size_t find_last_of(const StringPiece& self,
116 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
119 BASE_EXPORT size_t find_last_of(const StringPiece& self,
122 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
333 // find_last_of: Find the last occurence of one of a set of characters.
334 size_type find_last_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
336 return internal::find_last_of(*this, s, pos);
338 size_type find_last_of(value_type c, function in class:base::BasicStringPiece
/external/libweave/third_party/chromium/base/strings/
H A Dstring_piece.cc237 size_t find_last_of(const StringPiece& self, const StringPiece& s, size_t pos) { function in namespace:base::internal
H A Dstring_piece.h68 size_t find_last_of(const StringPiece& self, const StringPiece& s, size_t pos);
69 size_t find_last_of(const StringPiece& self, char c, size_t pos);
252 // find_last_of: Find the last occurence of one of a set of characters.
253 size_type find_last_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
255 return internal::find_last_of(*this, s, pos);
257 size_type find_last_of(value_type c, function in class:base::BasicStringPiece

Completed in 3442 milliseconds