HelenOS sources

find_first_of    1289 uspace/lib/cpp/include/__bits/string/string.hpp                 return find_first_of(str.c_str(), pos, str.size());
find_first_of    1311 uspace/lib/cpp/include/__bits/string/string.hpp                 return find_first_of(str, pos, traits_type::length(str));
find_first_of     467 uspace/lib/cpp/src/__bits/test/string.cpp         idx = str3.find_first_of(target);
find_first_of     473 uspace/lib/cpp/src/__bits/test/string.cpp         idx = str3.find_first_of(target, 6);
find_first_of     479 uspace/lib/cpp/src/__bits/test/string.cpp         idx = str3.find_first_of("DEF", 3);
find_first_of     485 uspace/lib/cpp/src/__bits/test/string.cpp         idx = str3.find_first_of(target, 9);
find_first_of     491 uspace/lib/cpp/src/__bits/test/string.cpp         idx = str3.find_first_of("");
find_first_of     497 uspace/lib/cpp/src/__bits/test/string.cpp         idx = str3.find_first_of('A', 1);
find_first_of     503 uspace/lib/cpp/src/__bits/test/string.cpp         idx = str3.find_first_of('A', 6);
find_first_of     589 uspace/lib/cpp/src/__bits/test/string.cpp         idx = str3.find_first_of('a', 9);
HelenOS homepage, sources at GitHub