Lines Matching refs:argListStr
348 arg_list_t argListStr;
638 ParseListArgParam(optarg, &argListStr, COLON);
639 SetLogComponents(argListStr);
642 ParseListArgParam(optarg, &argListStr, COLON);
643 SetLogDebug(argListStr);
646 ParseListArgParam(optarg, &argListStr, COLON);
647 SetLogError(argListStr);
650 ParseListArgParam(optarg, &argListStr, COLON);
651 SetLogFatal(argListStr);
654 ParseListArgParam(optarg, &argListStr, COLON);
655 SetLogInfo(argListStr);
661 ParseListArgParam(optarg, &argListStr, COLON);
662 SetLogWarning(argListStr);
1176 ParseListArgParam(optarg, &argListStr, COLON);
1177 SetCompilerMethodsRange(&argListStr);
1180 ParseListArgParam(optarg, &argListStr, " ");
1181 SetCompilerCodegenOptions(argListStr);
1414 void JSRuntimeOptions::ParseListArgParam(const std::string &option, arg_list_t *argListStr, std::string delimiter)
1416 argListStr->clear();
1420 argListStr->push_back(option.substr(strIndex, pos - strIndex));
1426 argListStr->push_back(option.substr(strIndex, pos - strIndex));