Searched defs:find_first_of (Results 1 - 6 of 6) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DSmallString.h177 size_t find_first_of(char C, size_t From = 0) const { function in class:llvm::SmallString
178 return str().find_first_of(C, From);
185 size_t find_first_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
186 return str().find_first_of(Chars, From);
/external/protobuf/src/google/protobuf/stubs/
H A Dstringpiece.cc162 stringpiece_ssize_type StringPiece::find_first_of(StringPiece s, function in class:google::protobuf::StringPiece
168 if (s.length_ == 1) return find_first_of(s.ptr_[0], pos);
H A Dstringpiece.h380 stringpiece_ssize_type find_first_of(StringPiece s, size_type pos = 0) const;
381 stringpiece_ssize_type find_first_of(char c, size_type pos = 0) const { function in class:google::protobuf::StringPiece
/external/libchrome/base/strings/
H A Dstring_piece.cc200 size_t find_first_of(const StringPiece& self, function in namespace:base::internal
221 size_t find_first_of(const StringPiece16& self, function in namespace:base::internal
225 std::find_first_of(self.begin() + pos, self.end(), s.begin(), s.end());
H A Dstring_piece.h92 BASE_EXPORT size_t find_first_of(const StringPiece& self,
95 BASE_EXPORT size_t find_first_of(const StringPiece16& self,
316 // find_first_of: Find the first occurence of one of a set of characters.
317 size_type find_first_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
319 return internal::find_first_of(*this, s, pos);
321 size_type find_first_of(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTString.cpp835 @Function find_first_of
841 size_t CPVRTString::find_first_of(char _Ch, size_t _Off) const function in class:CPVRTString
852 @Function find_first_of
858 size_t CPVRTString::find_first_of(const char* _Ptr, size_t _Off) const function in class:CPVRTString
873 @Function find_first_of
880 size_t CPVRTString::find_first_of(const char* _Ptr, size_t _Off, size_t _Count) const function in class:CPVRTString
896 @Function find_first_of
939 @Function find_first_of
945 size_t CPVRTString::find_first_of(const CPVRTString& _Str, size_t _Off) const function in class:CPVRTString

Completed in 2997 milliseconds