Lines Matching refs:new_token_list
117 TokenList new_token_list; in Split() local
127 new_token_list.push_back(tok); in Split()
130 new_token_list.push_back(std::string() + sep); in Split()
139 new_token_list.push_back(tok); in Split()
142 return TokenRange(std::move(new_token_list)); in Split()
210 TokenList new_token_list(begin(), end()); in RemoveCharacter()
213 for (auto&& token : new_token_list) { in RemoveCharacter()
228 return TokenRange(std::move(new_token_list)); in RemoveCharacter()
273 TokenList new_token_list; in MatchSubstrings() local
285 new_token_list.push_back(std::move(wildcard_substr)); in MatchSubstrings()
310 new_token_list.push_back(string.substr(next_token_idx, tok.size())); in MatchSubstrings()
328 return std::make_unique<TokenRange>(std::move(new_token_list)); in MatchSubstrings()