Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:arg_pos

171         const char *arg_pos;
172 for (arg_pos = command;
173 arg_pos && arg_pos[0];
174 arg_pos = arg_end)
177 const char *arg_start = ::strspn (arg_pos, k_space_separators) + arg_pos;
192 arg_pos = arg_piece_start;
205 arg_end = ::strcspn (arg_pos, k_space_separators_with_slash_and_quotes) + arg_pos;
237 arg_pos = arg_end + 2;
238 arg_piece_start = arg_pos;
242 arg_pos = arg_end + 2;
267 arg_pos = arg_end + 1; // Skip the quote character
268 arg_piece_start = arg_pos; // Note we are starting from later in the string
273 arg_pos = arg_end + 1;
292 arg_pos = arg_end;
293 ++arg_pos; // Skip the quote character
294 arg_piece_start = arg_pos; // Note we are starting from later in the string
319 arg_pos = end_quote + 1;
320 arg_piece_start = arg_pos;
341 arg_pos = ::strspn (arg_end, k_space_separators) + arg_end;