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

  /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...]
  /external/astl/tests/
test_string.cpp 1064 EXPECT_TRUE(s.find_last_not_of('a') == string::npos);
1065 EXPECT_TRUE(s.find_last_not_of('a', 0) == string::npos);
1066 EXPECT_TRUE(s.find_last_not_of('a', 10) == string::npos);
1068 EXPECT_TRUE(s.find_last_not_of('a') == 9);
1069 EXPECT_TRUE(s.find_last_not_of('a', 10) == 9);
1070 EXPECT_TRUE(s.find_last_not_of('a', 9) == 9);
1071 EXPECT_TRUE(s.find_last_not_of('a', 0) == string::npos);
1073 EXPECT_TRUE(s.find_last_not_of('a') == 7);
  /external/stlport/stlport/stl/
_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...]
_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
  /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); }
  /external/astl/include/
string 301 size_type find_last_not_of(value_type c, size_type pos = npos) const;
  /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
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
ustring.cpp 339 uoff_t string::find_last_not_of (const string& s, uoff_t pos) const function in class:ustl::string
ustring.h 162 uoff_t find_last_not_of (const string& s, uoff_t pos = npos) const;
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 499 cdata.erase(cdata.find_last_not_of(whitespace) + 1);
    [all...]

Completed in 330 milliseconds