Lines Matching refs:end
130 size_t start = i, end = start + 1;
131 for (; end < arg.size() && arg[end] == '\\'; ++end) {
133 size_t backslash_count = end - start;
136 // Since we also will end the string with a double quote, we escape for
137 // either a double quote or the end of the string.
138 if (end == arg.size() || arg[end] == '"') {
145 // Advance i to one before the end to balance i++ in loop.
146 i = end - 1;
361 auto [iter, end] = switches_.equal_range(switch_string);
362 while (iter != end) {
417 StringVector args(argv_.begin() + begin_args_, argv_.end());
420 std::find(args.begin(), args.end(), kSwitchTerminator);
421 if (switch_terminator != args.end())
465 argv_.insert(argv_.begin(), wrapper_argv.begin(), wrapper_argv.end());