Lines Matching defs:optarg
385 SetAOTOutputFile(optarg);
397 SetArkBundleName(optarg);
408 SetAsmOpcodeDisableRange(optarg);
419 SetCompilerLogOption(optarg);
550 SetOptCodeRange(optarg);
627 SetIcuDataPath(optarg);
638 ParseListArgParam(optarg, &argListStr, COLON);
642 ParseListArgParam(optarg, &argListStr, COLON);
646 ParseListArgParam(optarg, &argListStr, COLON);
650 ParseListArgParam(optarg, &argListStr, COLON);
654 ParseListArgParam(optarg, &argListStr, COLON);
658 SetLogLevel(optarg);
661 ParseListArgParam(optarg, &argListStr, COLON);
704 SetMethodsListForLog(optarg);
747 if (*optarg == '\0') {
750 SetPGOProfilerPath(optarg);
801 SetStubFile(optarg);
804 SetTargetTriple(optarg);
807 SetEntryPoint(optarg);
930 SetCompilerSelectMethods(optarg);
933 SetCompilerSkipMethods(optarg);
936 SetTargetCompilerMode(optarg);
939 SetCompilerFrameworkAbcPath(optarg);
942 SetHapPath(optarg);
1004 SetCompilerPkgJsonInfo(optarg);
1007 SetCompilerExternalPkgJsonInfo(optarg);
1176 ParseListArgParam(optarg, &argListStr, COLON);
1180 ParseListArgParam(optarg, &argListStr, " ");
1346 if ((strcmp(optarg, "false") == 0) || (strcmp(optarg, "0") == 0)) {
1356 *argDouble = std::stod(optarg, nullptr);
1358 LOG_ECMA(ERROR) << "getopt: \"" << option << "\" argument has invalid parameter value \"" << optarg <<"\"\n";
1366 if (StartsWith(optarg, "0x")) {
1368 *argInt = std::stoi(optarg, nullptr, HEX);
1370 *argInt = std::stoi(optarg);
1374 LOG_ECMA(ERROR) << "getopt: \"" << option << "\" argument has invalid parameter value \"" << optarg <<"\"\n";
1382 if (StartsWith(optarg, "0x")) {
1384 *argUInt32 = std::strtoull(optarg, nullptr, HEX);
1387 *argUInt32 = std::strtoull(optarg, nullptr, DEC);
1391 LOG_ECMA(ERROR) << "getopt: \"" << option << "\" argument has invalid parameter value \"" << optarg <<"\"\n";
1399 if (StartsWith(optarg, "0x")) {
1401 *argUInt64 = std::strtoull(optarg, nullptr, HEX);
1404 *argUInt64 = std::strtoull(optarg, nullptr, DEC);
1408 LOG_ECMA(ERROR) << "getopt: \"" << option << "\" argument has invalid parameter value \"" << optarg <<"\"\n";