Home
last modified time | relevance | path

Searched refs:commandStrings (Results 1 – 9 of 9) sorted by relevance

/third_party/lzma/CPP/7zip/Bundles/SFXWin/
DSfxWin.cpp91 UStringVector commandStrings; in WinMain2() local
92 NCommandLineParser::SplitCommandLine(GetCommandLineW(), commandStrings); in WinMain2()
95 if (commandStrings.Size() > 0) in WinMain2()
96 commandStrings.Delete(0); in WinMain2()
99 FOR_VECTOR (i, commandStrings) in WinMain2()
101 const UString &s = commandStrings[i]; in WinMain2()
/third_party/lzma/CPP/7zip/Bundles/SFXCon/
DSfxCon.cpp280 UStringVector commandStrings; in Main2() local
282 NCommandLineParser::SplitCommandLine(GetCommandLineW(), commandStrings); in Main2()
284 GetArguments(numArgs, args, commandStrings); in Main2()
302 if (commandStrings.IsEmpty()) in Main2()
305 const FString arcPath = us2fs(commandStrings.Front()); in Main2()
310 if (commandStrings.Size() > 0) in Main2()
311 commandStrings.Delete(0); in Main2()
318 if (!parser.ParseStrings(kSwitchForms, kNumSwitches, commandStrings)) in Main2()
/third_party/lzma/CPP/Common/
DCommandLineParser.cpp164 …eStrings(const CSwitchForm *switchForms, unsigned numSwitches, const UStringVector &commandStrings) in ParseStrings() argument
174 FOR_VECTOR (i, commandStrings) in ParseStrings()
176 const UString &s = commandStrings[i]; in ParseStrings()
DCommandLineParser.h57 …Strings(const CSwitchForm *switchForms, unsigned numSwitches, const UStringVector &commandStrings);
/third_party/lzma/CS/7zip/Common/
DCommandLineParser.cs171 public void ParseStrings(SwitchForm[] switchForms, string[] commandStrings) in ParseStrings() argument
173 int numCommandStrings = commandStrings.Length; in ParseStrings()
177 string s = commandStrings[i]; in ParseStrings()
/third_party/lzma/CPP/7zip/UI/Console/
DMain.cpp728 UStringVector commandStrings; in Main2() local
731 NCommandLineParser::SplitCommandLine(GetCommandLineW(), commandStrings); in Main2()
746 commandStrings.Add(s); in Main2()
754 if (commandStrings.Size() > 0) in Main2()
755 commandStrings.Delete(0); in Main2()
758 if (commandStrings.Size() == 0) in Main2()
768 parser.Parse1(commandStrings, options); in Main2()
/third_party/lzma/CPP/7zip/UI/Common/
DArchiveCommandLine.h156 void Parse1(const UStringVector &commandStrings, CArcCmdLineOptions &options);
DArchiveCommandLine.cpp991 void CArcCmdLineParser::Parse1(const UStringVector &commandStrings, in Parse1() argument
995 if (!parser.ParseStrings(kSwitchForms, ARRAY_SIZE(kSwitchForms), commandStrings)) in Parse1()
/third_party/lzma/CPP/7zip/Bundles/LzmaCon/
DLzmaAlone.cpp353 UStringVector commandStrings; in main2() local
355 commandStrings.Add(MultiByteToUnicodeString(args[i])); in main2()
360 if (!parser.ParseStrings(kSwitchForms, ARRAY_SIZE(kSwitchForms), commandStrings)) in main2()