HomeSort by relevance Sort by last modified time
    Searched defs:find_last_of (Results 1 - 10 of 10) sorted by null

  /build/kati/
string_piece.cc 175 size_type StringPiece::find_last_of(const StringPiece& s, size_type pos) const { function in class:StringPiece
181 return find_last_of(s.ptr_[0], pos);
string_piece.h 162 size_type find_last_of(const StringPiece& s, size_type pos = npos) const;
163 size_type find_last_of(char c, size_type pos = npos) const { function in class:StringPiece
  /external/llvm/include/llvm/ADT/
SmallString.h 205 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/
stringpiece.cc 209 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);
stringpiece.h 387 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-7.0/llvm/include/llvm/ADT/
SmallString.h 205 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/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallString.h 205 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/
string_piece.cc 305 size_t find_last_of(const StringPiece& self, const StringPiece& s, size_t pos) { function in namespace:base::internal
325 size_t find_last_of(const StringPiece16& self, function in namespace:base::internal
string_piece.h 110 BASE_EXPORT size_t find_last_of(const StringPiece& self,
113 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
116 BASE_EXPORT size_t find_last_of(const StringPiece& self,
119 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
347 // find_last_of: Find the last occurence of one of a set of characters.
348 size_type find_last_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
350 return internal::find_last_of(*this, s, pos);
352 size_type find_last_of(value_type c, function in class:base::BasicStringPiece
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTString.cpp 1057 @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
    [all...]

Completed in 2227 milliseconds