HelenOS sources
find_last_of 1321 uspace/lib/cpp/include/__bits/string/string.hpp return find_last_of(str.c_str(), pos, str.size());
find_last_of 1340 uspace/lib/cpp/include/__bits/string/string.hpp return find_last_of(str, pos, traits_type::length(str));
find_last_of 509 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of(target);
find_last_of 515 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of(target, 6);
find_last_of 521 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of("DEF", 3);
find_last_of 527 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of(target, 1);
find_last_of 533 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of("");
find_last_of 539 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of('A', str3.size() - 1);
find_last_of 545 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of('A', 3);
HelenOS homepage, sources at GitHub