Searched refs:vTextLine (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/ |
| H A D | MICmdInterpreter.cpp | 97 if (vTextLine.empty()) in ValidateIsMi() 105 m_miCmdData.strMiCmd = vTextLine; in ValidateIsMi() 158 const CMIUtilString &vTextLine) { in MiHasCmdTokenEndingHyphen() argument 164 if (MiHasCmdTokenPresent(vTextLine)) { in MiHasCmdTokenEndingHyphen() 195 const CMIUtilString &vTextLine) { in MiHasCmdTokenEndingAlpha() argument 196 char cChar = vTextLine[0]; in MiHasCmdTokenEndingAlpha() 199 cChar = vTextLine[++i]; in MiHasCmdTokenEndingAlpha() 247 char cChar = vTextLine[0]; in MiHasCmd() 250 cChar = vTextLine[++i]; in MiHasCmd() 254 nPos = vTextLine.find('-', 0); in MiHasCmd() [all …]
|
| H A D | MICmdInterpreter.h | 38 bool ValidateIsMi(const CMIUtilString &vTextLine, bool &vwbYesValid, 48 bool MiHasCmdTokenEndingHyphen(const CMIUtilString &vTextLine); 49 bool MiHasCmdTokenEndingAlpha(const CMIUtilString &vTextLine); 50 bool MiHasCmd(const CMIUtilString &vTextLine); 51 bool MiHasCmdTokenPresent(const CMIUtilString &vTextLine);
|
| H A D | MIDriver.cpp | 653 MIunused(vTextLine); in InterpretCommandFallThruDriver() 838 bool CMIDriver::InterpretCommand(const CMIUtilString &vTextLine) { in InterpretCommand() argument 842 bool bOk = InterpretCommandThisDriver(vTextLine, bCmdYesValid); in InterpretCommand() 844 bOk = InterpretCommandFallThruDriver(vTextLine, bCmdYesValid); in InterpretCommand() 879 const size_t nCommandOffset = vTextLine.find_first_not_of(digits); in WrapCLICommandIntoMICommand() 900 !bIsEmptyCommand && (vTextLine.at(nCommandOffset) != '-'); in WrapCLICommandIntoMICommand() 902 return vTextLine; in WrapCLICommandIntoMICommand() 908 const std::string vToken(vTextLine.begin(), in WrapCLICommandIntoMICommand() 909 vTextLine.begin() + nCommandOffset); in WrapCLICommandIntoMICommand() 912 const CMIUtilString vCliCommand(std::string(vTextLine, nCommandOffset)); in WrapCLICommandIntoMICommand() [all …]
|
| H A D | MIDriver.h | 132 bool InterpretCommand(const CMIUtilString &vTextLine); 133 bool InterpretCommandThisDriver(const CMIUtilString &vTextLine, 136 WrapCLICommandIntoMICommand(const CMIUtilString &vTextLine) const; 137 bool InterpretCommandFallThruDriver(const CMIUtilString &vTextLine,
|
| H A D | MICmdMgr.cpp | 163 bool CMICmdMgr::CmdInterpret(const CMIUtilString &vTextLine, bool &vwbYesValid, in CmdInterpret() argument 166 return m_interpretor.ValidateIsMi(vTextLine, vwbYesValid, in CmdInterpret()
|
| H A D | MICmdMgr.h | 44 bool CmdInterpret(const CMIUtilString &vTextLine, bool &vwbYesValid,
|