Home
last modified time | relevance | path

Searched refs:strArg (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmdArgValPrintValues.cpp67 const CMIUtilString strArg(vwArgContext.GetArgs()[0]); in Validate() local
68 if (IsArgPrintValues(strArg) && ExtractPrintValues(strArg)) { in Validate()
72 vwArgContext.RemoveArg(strArg); in Validate()
H A DMIDriverMgr.cpp516 const CMIUtilString strArg(argv[i]); in ParseArgs() local
519 if (("--interpreter" == strArg) || // Given by the client such as Eclipse in ParseArgs()
520 ("--executable" == strArg)) // Used to specify that there in ParseArgs()
526 if ("--version" == strArg) { in ParseArgs()
529 if ("--versionLong" == strArg) { in ParseArgs()
532 if ("--log" == strArg) { in ParseArgs()
535 if (0 == strArg.compare(0, 10, "--log-dir=")) { in ParseArgs()
536 strLogDir = strArg.substr(10, CMIUtilString::npos); in ParseArgs()
539 if (("--help" == strArg) || ("-h" == strArg)) { in ParseArgs()
H A DMIDriver.cpp438 const CMIUtilString strArg(argv[i]); in ParseArgs() local
442 if (argFile.IsFilePath(strArg) || in ParseArgs()
443 CMICmdArgValString(true, false, true).IsStringArg(strArg)) { in ParseArgs()
447 m_strCmdLineArgCommandFileNamePath = strArg; in ParseArgs()
454 m_strCmdLineArgExecuteableFileNamePath = strArg; in ParseArgs()
459 else if (strArg == "-s" || strArg == "--source") { in ParseArgs()
462 MIRSRC(IDS_CMD_ARGS_ERR_VALIDATION_MISSING_INF), strArg.c_str()); in ParseArgs()
467 else if (strArg == "--executable") // Used to specify that in ParseArgs()
473 } else if (strArg == "--synchronous") { in ParseArgs()
H A DMICmdArgValOptionLong.cpp254 const CMIUtilString strArg = vrTxt.substr(2); in IsArgLongOption() local
255 return !strArg.IsNumber(); in IsArgLongOption()
284 const CMIUtilString strArg = vrTxt.substr(2); in ArgNameMatch() local
285 return (strArg == GetName()); in ArgNameMatch()
H A DMICmdArgValOptionShort.cpp127 const CMIUtilString strArg = vrTxt.substr(1); in ArgNameMatch() local
128 return (strArg == GetName()); in ArgNameMatch()
H A DMICmdCmdExec.cpp1063 CMIUtilString strArg; in Execute() local
1066 strArg, nArgIndex)) { in Execute()
1067 const char *argv[2] = {strArg.c_str(), NULL}; in Execute()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp581 const StringLiteral *strArg = in checkCall_mkstemp() local
588 if (!strArg || strArg->getCharByteWidth() != 1) in checkCall_mkstemp()
592 StringRef str = strArg->getString(); in checkCall_mkstemp()
636 out.str(), CELoc, strArg->getSourceRange()); in checkCall_mkstemp()