Searched refs:str_temp (Results 1 – 1 of 1) sorted by relevance
93 std::string str_temp(str); in Tokenize() local95 while ((pos = str_temp.find(delim)) != std::string::npos && delim != ' ') { in Tokenize()96 str_temp.replace(pos, 1, 1, ' '); in Tokenize()99 std::stringstream ss(str_temp); in Tokenize()100 while (ss >> str_temp) { in Tokenize()101 tokens->push_back(str_temp); in Tokenize()