Home | History | Annotate | Download | only in bit

Lines Matching refs:commaPos

465                 size_t commaPos;
467 commaPos = arg.find(',', beginPos);
468 if (commaPos == string::npos) {
470 target->actions.push_back(string(arg, beginPos, commaPos));
474 if (commaPos != beginPos) {
475 target->actions.push_back(string(arg, beginPos, commaPos-beginPos));
477 beginPos = commaPos+1;