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

  /external/chromium/base/
string_piece_unittest.cc 351 ASSERT_EQ(a.find_last_not_of(b), a.size()-1);
352 ASSERT_EQ(a.find_last_not_of(c), 22U);
353 ASSERT_EQ(b.find_last_not_of(a), StringPiece::npos);
354 ASSERT_EQ(b.find_last_not_of(b), StringPiece::npos);
355 ASSERT_EQ(f.find_last_not_of(i), 4U);
356 ASSERT_EQ(a.find_last_not_of(c, 24), 22U);
357 ASSERT_EQ(a.find_last_not_of(b, 3), 3U);
358 ASSERT_EQ(a.find_last_not_of(b, 2), StringPiece::npos);
360 ASSERT_EQ(f.find_last_not_of(d), f.size()-1);
361 ASSERT_EQ(f.find_last_not_of(e), f.size()-1)
    [all...]
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
string_piece.h 155 size_type find_last_not_of(const StringPiece& s, size_type pos = npos) const;
156 size_type find_last_not_of(char c, size_type pos = npos) const;
file_util.cc 161 std::string::size_type end1 = line1.find_last_not_of("\r\n");
167 std::string::size_type end2 = line2.find_last_not_of("\r\n");
string_util.cc 403 input.find_last_not_of(trim_chars) : last_char;
    [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...]
  /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
  /ndk/sources/cxx-stl/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); }
  /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); }
  /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...]
  /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...]
  /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
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 499 cdata.erase(cdata.find_last_not_of(whitespace) + 1);
    [all...]

Completed in 513 milliseconds