Home
last modified time | relevance | path

Searched refs:colon (Results 1 – 1 of 1) sorted by relevance

/oneTBB/examples/common/utility/
H A Dutility.hpp496 std::size_t colon = s.find(':'); in operator >>() local
497 if (colon == std::string::npos) { in operator >>()
502 std::size_t second_colon = s.find(':', colon + 1); in operator >>()
504 low = string_to_number_of_threads(std::string(s, 0, colon)); //not copying the colon in operator >>()
506 std::string(s, colon + 1, second_colon - (colon + 1))); //not copying the colons in operator >>()