Searched defs:find_last_of (Results 1 - 7 of 7) 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/protobuf/src/google/protobuf/stubs/
H A Dstringpiece.cc209 stringpiece_ssize_type StringPiece::find_last_of(StringPiece s, function in class:google::protobuf::StringPiece
213 if (s.length_ == 1) return find_last_of(s.ptr_[0], pos);
H A Dstringpiece.h387 stringpiece_ssize_type find_last_of(StringPiece s,
389 stringpiece_ssize_type find_last_of(char c, size_type pos = npos) const { function in class:google::protobuf::StringPiece
/external/swiftshader/third_party/llvm-subzero/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.h112 BASE_EXPORT size_t find_last_of(const StringPiece& self,
115 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
118 BASE_EXPORT size_t find_last_of(const StringPiece& self,
121 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
334 // find_last_of: Find the last occurence of one of a set of characters.
335 size_type find_last_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
337 return internal::find_last_of(*this, s, pos);
339 size_type find_last_of(value_type c, function in class:base::BasicStringPiece
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTString.cpp1057 @Function find_last_of
1063 size_t CPVRTString::find_last_of(char _Ch, size_t _Off) const function in class:CPVRTString
1076 @Function find_last_of
1082 size_t CPVRTString::find_last_of(const char* _Ptr, size_t _Off) const function in class:CPVRTString
1097 @Function find_last_of
1104 size_t CPVRTString::find_last_of(const char* _Ptr, size_t _Off, size_t _Count) const function in class:CPVRTString
1119 @Function find_last_of
1125 size_t CPVRTString::find_last_of(const CPVRTString& _Str, size_t _Off) const function in class:CPVRTString
1804 CPVRTString::size_type idx = strFilePath.find_last_of ( '.' );
1820 size_t i32sep = strFilePath.find_last_of('/');
[all...]

Completed in 793 milliseconds