Lines Matching defs:argEndIt
298 for (size_t argEndIt = 0, optionsE = options.size();; ++argEndIt) {
300 if (argEndIt == optionsE || options[argEndIt] == ' ') {
301 argName = extractArgAndUpdateOptions(options, argEndIt);
306 if (options[argEndIt] == '=') {
307 argName = extractArgAndUpdateOptions(options, argEndIt);
314 for (size_t argEndIt = 0, optionsE = options.size();; ++argEndIt) {
316 if (argEndIt == optionsE || options[argEndIt] == ' ') {
317 StringRef value = extractArgAndUpdateOptions(options, argEndIt);
322 char c = options[argEndIt];
323 if (tryProcessPunct(argEndIt, '\'') || tryProcessPunct(argEndIt, '"'))
329 for (++argEndIt; argEndIt != optionsE; ++argEndIt) {
331 if (tryProcessPunct(argEndIt, '\'') || tryProcessPunct(argEndIt, '"'))
333 if (options[argEndIt] == '{')
335 else if (options[argEndIt] == '}' && --braceCount == 0)
339 --argEndIt;