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

  /external/chromium/base/
string_piece.cc 174 size_type StringPiece::find_last_not_of(const StringPiece& s, function in class:base::StringPiece
185 return find_last_not_of(s.ptr_[0], pos);
198 size_type StringPiece::find_last_not_of(char c, size_type pos) const { function in class:base::StringPiece
  /external/astl/src/
string.cpp 638 string::size_type string::find_last_not_of(value_type c, size_type pos) const { function in class:std::string
  /external/stlport/stlport/stl/debug/
_string.h 774 // find_last_not_of
775 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
776 { return _M_non_dbg_impl.find_last_not_of(__s._M_non_dbg_impl, __pos); }
777 size_type find_last_not_of(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string
780 return _M_non_dbg_impl.find_last_not_of(__s, __pos);
782 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
785 return _M_non_dbg_impl.find_last_not_of(__s, __pos, __n);
787 size_type find_last_not_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
788 { return _M_non_dbg_impl.find_last_not_of(__c, __pos); }
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 774 // find_last_not_of
775 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
776 { return _M_non_dbg_impl.find_last_not_of(__s._M_non_dbg_impl, __pos); }
777 size_type find_last_not_of(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string
780 return _M_non_dbg_impl.find_last_not_of(__s, __pos);
782 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
785 return _M_non_dbg_impl.find_last_not_of(__s, __pos, __n);
787 size_type find_last_not_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
788 { return _M_non_dbg_impl.find_last_not_of(__c, __pos); }
  /external/stlport/stlport/stl/
_string.c 540 basic_string<_CharT,_Traits,_Alloc>::find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:_Alloc
559 basic_string<_CharT, _Traits, _Alloc>::find_last_not_of(_CharT __c, size_type __pos) const function in class:_Alloc
_string_sum.h 226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const function in class:__bstr_sum
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); }
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
233 { return _M_get_storage().find_last_not_of(__c, __pos); }
_string.h 1011 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
1014 size_type find_last_not_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string.c 540 basic_string<_CharT,_Traits,_Alloc>::find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:_Alloc
559 basic_string<_CharT, _Traits, _Alloc>::find_last_not_of(_CharT __c, size_type __pos) const function in class:_Alloc
_string_sum.h 226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const function in class:__bstr_sum
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); }
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
233 { return _M_get_storage().find_last_not_of(__c, __pos); }
_string.h 1011 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
1014 size_type find_last_not_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
    [all...]
  /external/stlport/test/unit/
string_test.cpp 66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() function in class:StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 );
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 );
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 );
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 );
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 );
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos );
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() function in class:StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 );
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 );
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 );
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 );
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 );
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos );
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 )
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() function in class:StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 );
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 );
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 );
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 );
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 );
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos );
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 )
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
vstring.h 1807 find_last_not_of(const __versa_string& __str, function in class:__versa_string
1838 find_last_not_of(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
basic_string.h 1943 find_last_not_of(const basic_string& __str, size_type __pos = npos) const function in class:basic_string
1972 find_last_not_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
    [all...]

Completed in 770 milliseconds