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

/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
H A Dstring_piece.cc156 size_type StringPiece::find_last_of(const StringPiece& s, size_type pos) const { function in class:i18n::phonenumbers::StringPiece
162 return find_last_of(s.ptr_[0], pos);
H A Dstring_piece.h149 size_type find_last_of(const StringPiece& s, size_type pos = npos) const;
150 size_type find_last_of(char c, size_type pos = npos) const { function in class:i18n::phonenumbers::StringPiece
/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/chromium_org/base/strings/
H A Dstring_piece.cc300 size_t find_last_of(const StringPiece& self, const StringPiece& s, size_t pos) { function in namespace:base::internal
320 size_t find_last_of(const StringPiece16& self, function in namespace:base::internal
H A Dstring_piece.h119 BASE_EXPORT size_t find_last_of(const StringPiece& self,
122 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
125 BASE_EXPORT size_t find_last_of(const StringPiece& self,
128 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
322 // find_last_of: Find the last occurence of one of a set of characters.
323 size_type find_last_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
325 return internal::find_last_of(*this, s, pos);
327 size_type find_last_of(value_type c, function in class:base::BasicStringPiece
/external/stlport/stlport/stl/
H A D_string.c496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_type __pos, function in class:_Alloc
H A D_string_sum.h208 size_type find_last_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
209 { return _M_get_storage().find_last_of(__s, __pos); }
210 size_type find_last_of(const _CharT* __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
211 { return _M_get_storage().find_last_of(__s, __pos); }
212 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
213 { return _M_get_storage().find_last_of(__s, __pos, __n); }
214 size_type find_last_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
H A D_string.h987 public: // find_last_of
988 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
989 { return find_last_of(__s._M_Start(), __pos, __s.size()); }
991 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
992 { _STLP_FIX_LITERAL_BUG(__s) return find_last_of(__s, __pos, _Traits::length(__s)); }
994 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;
996 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
/external/stlport/stlport/stl/debug/
H A D_string.h742 // find_last_of
743 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
744 { return _M_non_dbg_impl.find_last_of(__s._M_non_dbg_impl, __pos); }
745 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string
748 return _M_non_dbg_impl.find_last_of(__s, __pos);
750 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
753 return _M_non_dbg_impl.find_last_of(__s, __pos, __n);
755 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
/external/stlport/test/unit/
H A Dstring_test.cpp65 CPPUNIT_TEST(find_last_of);
124 void find_last_of();
781 void StringTest::find_last_of() function in class:StringTest
786 CPPUNIT_ASSERT( s.find_last_of("abcde") == 26 );
790 CPPUNIT_CHECK( test.find_last_of( "a", 2, 1 ) == 2 );
791 CPPUNIT_CHECK( test.find_last_of( "a", 1, 1 ) == 0 );
792 CPPUNIT_CHECK( test.find_last_of( "a", 0, 1 ) == 0 );
794 CPPUNIT_CHECK( test.find_last_of( 'a', 2 ) == 2 );
795 CPPUNIT_CHECK( test.find_last_of( 'a', 1 ) == 0 );
796 CPPUNIT_CHECK( test.find_last_of( '
[all...]

Completed in 6676 milliseconds