Searched defs:switchForms (Results 1 - 2 of 2) sorted by relevance

/external/lzma/CPP/Common/
H A DCommandLineParser.cpp70 void CParser::ParseStrings(const CSwitchForm *switchForms, argument
84 if (!ParseString(s, switchForms))
91 bool CParser::ParseString(const UString &s, const CSwitchForm *switchForms) argument
108 int switchLen = MyStringLen(switchForms[switchIndex].IDString);
114 if (temp.CompareNoCase(switchForms[switchIndex].IDString) == 0)
115 // if (_strnicmp(switchForms[switchIndex].IDString, LPCSTR(s) + pos, switchLen) == 0)
124 const CSwitchForm &switchForm = switchForms[matchedSwitchIndex];
/external/lzma/CS/7zip/Common/
H A DCommandLineParser.cs70 bool ParseString(string srcString, SwitchForm[] switchForms) argument
87 int switchLen = switchForms[switchIndex].IDString.Length;
90 if (String.Compare(switchForms[switchIndex].IDString, 0,
100 SwitchForm switchForm = switchForms[matchedSwitchIndex];
171 public void ParseStrings(SwitchForm[] switchForms, string[] commandStrings) argument
184 if (!ParseString(s, switchForms))

Completed in 227 milliseconds