/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...] |
/external/astl/tests/ |
test_string.cpp | 1027 EXPECT_TRUE(s.find_last_of('a') == string::npos); 1028 EXPECT_TRUE(s.find_last_of('a', 0) == string::npos); 1029 EXPECT_TRUE(s.find_last_of('a', 10) == string::npos); 1031 EXPECT_TRUE(s.find_last_of('a', 10) == 10); 1032 EXPECT_TRUE(s.find_last_of('a', 9) == 7); 1033 EXPECT_TRUE(s.find_last_of('a', 0) == 0); 1035 EXPECT_TRUE(s.find_last_of('a') == 0); 1037 // For char (set of size 1) find_last_of is equiv to rfind(char, pos).
|
/external/stlport/stlport/stl/ |
_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...] |
_string.c | 496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_type __pos, function in class:_Alloc
|
/external/astl/include/ |
string | 284 return find_last_of(c, pos); 299 size_type find_last_of(value_type c, size_type pos = npos) const;
|
/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
|
/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/srec/tools/grxmlcompile/ |
grxmlcompile.cpp | 138 std::string::size_type idx = full.find_last_of("/"); 237 unsigned int p1 = grxmlbase.find_last_of("."); [all...] |
sub_grph.cpp | 43 int lPos= label.find_last_of ("___") + 1;
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
ustring.cpp | 330 uoff_t string::find_last_of (const string& s, uoff_t pos) const function in class:ustl::string
|
ustring.h | 161 uoff_t find_last_of (const string& s, uoff_t pos = npos) const;
|