Home
last modified time | relevance | path

Searched refs:_switches (Results 1 – 3 of 3) sorted by relevance

/external/lzma/CPP/Common/
DCommandLineParser.cpp56 _switches(NULL), in CParser()
63 delete []_switches; in ~CParser()
99 CSwitchResult &sw = _switches[switchIndex]; in ParseString()
170 delete []_switches; in ParseStrings()
171 _switches = NULL; in ParseStrings()
172 _switches = new CSwitchResult[numSwitches]; in ParseStrings()
DCommandLineParser.h46 CSwitchResult *_switches; variable
58 const CSwitchResult& operator[](unsigned index) const { return _switches[index]; }
/external/lzma/CS/7zip/Common/
DCommandLineParser.cs61 SwitchResult[] _switches; field in SevenZip.CommandLineParser.Parser
65 _switches = new SwitchResult[numSwitches]; in Parser()
67 _switches[i] = new SwitchResult(); in Parser()
85 for (int switchIndex = 0; switchIndex < _switches.Length; switchIndex++) in ParseString()
99 SwitchResult matchedSwitch = _switches[matchedSwitchIndex]; in ParseString()
189 public SwitchResult this[int index] { get { return _switches[index]; } }