Lines Matching refs:find
62 CPPUNIT_TEST(find);
121 void find();
638 void StringTest::find() in find() function in StringTest
641 CPPUNIT_ASSERT( s.find("one") == 0 ); in find()
642 CPPUNIT_ASSERT( s.find('t') == 4 ); in find()
643 CPPUNIT_ASSERT( s.find('t', 5) == 8 ); in find()
652 CPPUNIT_ASSERT( s.find("four") == npos_local ); in find()
653 CPPUNIT_ASSERT( s.find("one", string::npos) == npos_local ); in find()
660 CPPUNIT_ASSERT( s.substr(s.find(empty), empty.size()) == empty ); in find()
698 string::size_type p = s.find( "", 0, 0 ); in bogus_edge_find()
705 string::size_type p = s.find( "", 0, 0 ); in bogus_edge_find()
711 string::size_type p = s.find( "", 1, 0 ); in bogus_edge_find()
717 string::size_type p = s.find( "", 1, 0 ); in bogus_edge_find()
723 string::size_type p = s.find( "", 3, 0 ); in bogus_edge_find()