Home
last modified time | relevance | path

Searched refs:nonSwitchStrings (Results 1 – 4 of 4) sorted by relevance

/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaAlone.cs162 System.Collections.ArrayList nonSwitchStrings = parser.NonSwitchStrings; in Main2()
165 if (paramIndex >= nonSwitchStrings.Count) in Main2()
167 string command = (string)nonSwitchStrings[paramIndex++]; in Main2()
189 if (paramIndex < nonSwitchStrings.Count) in Main2()
190 if (!GetNumber((string)nonSwitchStrings[paramIndex++], out numIterations)) in Main2()
217 if (paramIndex >= nonSwitchStrings.Count) in Main2()
219 string inputName = (string)nonSwitchStrings[paramIndex++]; in Main2()
230 if (paramIndex >= nonSwitchStrings.Count) in Main2()
232 string outputName = (string)nonSwitchStrings[paramIndex++]; in Main2()
/external/lzma/CPP/7zip/Bundles/LzmaCon/
DLzmaAlone.cpp192 const UStringVector &nonSwitchStrings = parser.NonSwitchStrings; in main2() local
195 if (paramIndex >= nonSwitchStrings.Size()) in main2()
197 const UString &command = nonSwitchStrings[paramIndex++]; in main2()
265 if (paramIndex < nonSwitchStrings.Size()) in main2()
266 if (!GetNumber(nonSwitchStrings[paramIndex++], numIterations)) in main2()
304 if (paramIndex >= nonSwitchStrings.Size()) in main2()
306 const UString &inputName = nonSwitchStrings[paramIndex++]; in main2()
326 if (paramIndex >= nonSwitchStrings.Size()) in main2()
328 const UString &outputName = nonSwitchStrings[paramIndex++]; in main2()
/external/lzma/CPP/7zip/UI/Common/
DArchiveCommandLine.cpp393 const UStringVector &nonSwitchStrings, NRecursedType::EEnum type, in AddToCensorFromNonSwitchesStrings() argument
397 if ((renamePairs || nonSwitchStrings.Size() == startIndex) && !thereAreSwitchIncludes) in AddToCensorFromNonSwitchesStrings()
404 for (unsigned i = startIndex; i < nonSwitchStrings.Size(); i++) in AddToCensorFromNonSwitchesStrings()
406 const UString &s = nonSwitchStrings[i]; in AddToCensorFromNonSwitchesStrings()
418 …AddRenamePair(renamePairs, nonSwitchStrings[oldIndex], s, NRecursedType::kNonRecursed, wildcardMat… in AddToCensorFromNonSwitchesStrings()
429 …throw CArcCmdLineException("There is no second file name for rename pair:", nonSwitchStrings[oldIn… in AddToCensorFromNonSwitchesStrings()
956 const UStringVector &nonSwitchStrings = parser.NonSwitchStrings; in Parse2() local
957 int numNonSwitchStrings = nonSwitchStrings.Size(); in Parse2()
961 if (!ParseArchiveCommand(nonSwitchStrings[kCommandIndex], options.Command)) in Parse2()
962 throw CArcCmdLineException("Unsupported command:", nonSwitchStrings[kCommandIndex]); in Parse2()
[all …]
/external/lzma/CPP/7zip/Bundles/SFXCon/
DSfxCon.cpp298 const UStringVector &nonSwitchStrings = parser.NonSwitchStrings; in Main2() local
300 int numNonSwitchStrings = nonSwitchStrings.Size(); in Main2()
309 if (!ParseArchiveCommand(nonSwitchStrings[kCommandIndex], command)) in Main2()
322 AddToCensorFromNonSwitchesStrings(wildcardCensor, nonSwitchStrings, recursedType, in Main2()