Searched refs:replaceThis (Results 1 – 7 of 7) sorted by relevance
/external/catch2/include/internal/ |
D | catch_string_manip.cpp | 68 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis… in replaceInPlace() argument 70 std::size_t i = str.find( replaceThis ); in replaceInPlace() 73 str = str.substr( 0, i ) + withThis + str.substr( i+replaceThis.size() ); in replaceInPlace() 75 i = str.find( replaceThis, i+withThis.size() ); in replaceInPlace()
|
D | catch_string_manip.h | 32 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis…
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.cpp | 296 TiXmlNode* TiXmlNode::ReplaceChild( TiXmlNode* replaceThis, const TiXmlNode& withThis ) in ReplaceChild() argument 298 if ( !replaceThis ) in ReplaceChild() 301 if ( replaceThis->parent != this ) in ReplaceChild() 316 node->next = replaceThis->next; in ReplaceChild() 317 node->prev = replaceThis->prev; in ReplaceChild() 319 if ( replaceThis->next ) in ReplaceChild() 320 replaceThis->next->prev = node; in ReplaceChild() 324 if ( replaceThis->prev ) in ReplaceChild() 325 replaceThis->prev->next = node; in ReplaceChild() 329 delete replaceThis; in ReplaceChild()
|
D | tinyxml.h | 608 TiXmlNode* ReplaceChild( TiXmlNode* replaceThis, const TiXmlNode& withThis );
|
/external/bcc/tests/cc/ |
D | catch.hpp | 367 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis… 7762 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis… in replaceInPlace() argument 7764 std::size_t i = str.find( replaceThis ); in replaceInPlace() 7767 str = str.substr( 0, i ) + withThis + str.substr( i+replaceThis.size() ); in replaceInPlace() 7769 i = str.find( replaceThis, i+withThis.size() ); in replaceInPlace()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 3184 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis… 13653 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis… in replaceInPlace() argument 13655 std::size_t i = str.find( replaceThis ); in replaceInPlace() 13658 str = str.substr( 0, i ) + withThis + str.substr( i+replaceThis.size() ); in replaceInPlace() 13660 i = str.find( replaceThis, i+withThis.size() ); in replaceInPlace()
|
/external/libabigail/tests/lib/ |
D | catch.hpp | 3210 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis… 13798 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis… in replaceInPlace() argument 13800 std::size_t i = str.find( replaceThis ); in replaceInPlace() 13803 str = str.substr( 0, i ) + withThis + str.substr( i+replaceThis.size() ); in replaceInPlace() 13805 i = str.find( replaceThis, i+withThis.size() ); in replaceInPlace()
|