HelenOS sources
find_first_not_of 1350 uspace/lib/cpp/include/__bits/string/string.hpp return find_first_not_of(str.c_str(), pos, str.size());
find_first_not_of 1372 uspace/lib/cpp/include/__bits/string/string.hpp return find_first_not_of(str, pos, traits_type::length(str));
find_first_not_of 553 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_first_not_of(not_target);
find_first_not_of 559 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_first_not_of(not_target, 6);
find_first_not_of 565 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_first_not_of("xABC", 3);
find_first_not_of 571 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_first_not_of(not_target, 9);
find_first_not_of 577 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_first_not_of("");
find_first_not_of 583 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_first_not_of('x', 3);
HelenOS homepage, sources at GitHub