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

  /external/chromium/base/
string_piece.cc 155 size_type StringPiece::find_last_of(const StringPiece& s, size_type pos) const { function in class:base::StringPiece
161 return find_last_of(s.ptr_[0], pos);
string_piece.h 151 size_type find_last_of(const StringPiece& s, size_type pos = npos) const;
152 size_type find_last_of(char c, size_type pos = npos) const { function in class:base::StringPiece
  /external/astl/src/
string.cpp 614 string::size_type string::find_last_of(value_type c, size_type pos) const { function in class:std::string
  /external/stlport/stlport/stl/debug/
_string.h 742 // 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
  /ndk/sources/android/stlport/stlport/stl/debug/
_string.h 742 // 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/stlport/stl/
_string.c 496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_type __pos, function in class:_Alloc
_string_sum.h 208 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
_string.h 988 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
991 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
996 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
    [all...]
  /ndk/sources/android/stlport/stlport/stl/
_string.c 496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_type __pos, function in class:_Alloc
_string_sum.h 208 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
_string.h 988 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
991 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
996 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
    [all...]
  /external/stlport/test/unit/
string_test.cpp 65 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( 'a', 0 ) == 0 )
    [all...]
  /ndk/sources/android/stlport/test/unit/
string_test.cpp 65 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( 'a', 0 ) == 0 )
    [all...]

Completed in 990 milliseconds