/external/stlport/stlport/stl/ |
_string_sum.h | 217 size_type find_first_not_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum 218 { return _M_get_storage().find_first_not_of(__s, __pos); } 219 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum 220 { return _M_get_storage().find_first_not_of(__s, __pos); } 221 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum 222 { return _M_get_storage().find_first_not_of(__s, __pos, __n); } 223 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum 224 { return _M_get_storage().find_first_not_of(__c, __pos); }
|
_string.h | 1000 size_type find_first_not_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string 1003 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string [all...] |
_string.c | 513 basic_string<_CharT,_Traits,_Alloc> ::find_first_not_of(const _CharT* __s, size_type __pos, function in class:_Alloc 528 basic_string<_CharT,_Traits,_Alloc> ::find_first_not_of(_CharT __c, size_type __pos) const { function in class:_Alloc
|
/external/astl/tests/ |
test_string.cpp | 1052 EXPECT_TRUE(s.find_first_not_of('a') == string::npos); 1054 EXPECT_TRUE(s.find_first_not_of('a') == 1); 1055 EXPECT_TRUE(s.find_first_not_of('a', 0) == 1); 1056 EXPECT_TRUE(s.find_first_not_of('a', 1) == 1); 1057 EXPECT_TRUE(s.find_first_not_of('a', 7) == 8); 1059 EXPECT_TRUE(s.find_first_not_of('a') == 0); 1060 EXPECT_TRUE(s.find_first_not_of('a', 8) == string::npos); // out of bound
|
/external/stlport/stlport/stl/debug/ |
_string.h | 758 // find_first_not_of 759 size_type find_first_not_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string 760 { return _M_non_dbg_impl.find_first_not_of(__s._M_non_dbg_impl, __pos); } 761 size_type find_first_not_of(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string 764 return _M_non_dbg_impl.find_first_not_of(__s, __pos); 766 size_type find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 769 return _M_non_dbg_impl.find_first_not_of(__s, __pos, __n); 771 size_type find_first_not_of(_CharT __c, size_type __pos = 0) const function in class:basic_string 772 { return _M_non_dbg_impl.find_first_not_of(__c, __pos); }
|
/external/astl/include/ |
string | 300 size_type find_first_not_of(value_type c, size_type pos = 0) const;
|
/external/srec/tools/grxmlcompile/ |
grxmldoc.cpp | 498 cdata.erase(0, cdata.find_first_not_of(whitespace) ); 507 begIdx = cdata.find_first_not_of(whitespace); 542 begIdx = cdata.find_first_not_of (whitespace, endIdx); [all...] |
/external/astl/src/ |
string.cpp | 628 string::size_type string::find_first_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 | 321 uoff_t string::find_first_not_of (const string& s, uoff_t pos) const function in class:ustl::string
|
ustring.h | 160 uoff_t find_first_not_of (const string& s, uoff_t pos = 0) const;
|
/external/stlport/test/unit/ |
string_test.cpp | 657 CPPUNIT_ASSERT( s.find_first_not_of("enotw ") == 9 ); [all...] |