Lines Matching defs:strs
107 bool CommandParser::ProcessCommand(std::vector<std::string> strs)
109 ProcessingCommand(strs);
776 void CommandParser::ProcessingCommand(const std::vector<std::string>& strs)
778 for (unsigned int i = 0; i < strs.size(); ++i) {
779 std::string index = strs[i];
780 auto regInfo = regsArgsCountMap.find(strs[i]);
787 if (i == strs.size() - 1 || strs[i + 1][0] == '-') {
791 args.push_back(strs[++i]);
1004 std::vector<std::string> strs;
1009 strs.push_back(argv[i]);
1011 if (!ProcessCommand(strs)) {