Searched refs:replace_nth (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/libs/algorithm/string/test/ |
D | replace_test.cpp | 143 TEST_ALGO( replace_nth, "1abc3abc2", string("abc") C_ 0 C_ string("YYY"), string("1YYY3abc2") ); in replace_nth_test() 144 … TEST_ALGO( replace_nth, "1abc3abc2", string("abc") C_ -1 C_ string("YYY"), string("1abc3YYY2") ); in replace_nth_test() 147 TEST_ALGO( replace_nth, "1abc3abc2", string("abc") C_ 0 C_ string("Z"), string("1Z3abc2") ); in replace_nth_test() 148 … TEST_ALGO( replace_nth, "1abc3abc2", string("abc") C_ 0 C_ string("XXXX"), string("1XXXX3abc2") ); in replace_nth_test() 149 TEST_ALGO( replace_nth, "1abc3abc2", "abc" C_ 0 C_ "XXXX", string("1XXXX3abc2") ); in replace_nth_test() 150 TEST_ALGO( replace_nth, "1abc3abc2", "abc" C_ 3 C_ "XXXX", string("1abc3abc2") ); in replace_nth_test() 151 TEST_ALGO( replace_nth, "1abc3abc2", "abc" C_ -3 C_ "XXXX", string("1abc3abc2") ); in replace_nth_test() 152 TEST_ALGO( replace_nth, "1abc3abc2", string("") C_ 0 C_ string("XXXX"), string("1abc3abc2") ); in replace_nth_test() 153 TEST_ALGO( replace_nth, "", string("") C_ 0 C_ string("XXXX"), string("") ); in replace_nth_test() 154 TEST_ALGO( replace_nth, "", string("") C_ -1 C_ string("XXXX"), string("") ); in replace_nth_test() [all …]
|
/third_party/boost/libs/algorithm/string/example/ |
D | replace_example.cpp | 71 replace_nth( str1, "_", 4, "+" ); in main() 72 replace_nth( str1, "_", 2, "+" ); in main()
|
/third_party/boost/boost/algorithm/string/ |
D | replace.hpp | 486 inline void replace_nth( in replace_nth() function 912 using algorithm::replace_nth;
|
/third_party/boost/doc/html/ |
D | doc_HTML.manifest | 709 boost/algorithm/replace_nth.html
|