OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matchedSwitch
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CPP/Common/
CommandLineParser.cpp
123
CSwitchResult &
matchedSwitch
= _switches[matchedSwitchIndex];
125
if ((!switchForm.Multi) &&
matchedSwitch
.ThereIs)
127
matchedSwitch
.ThereIs = true;
136
matchedSwitch
.WithMinus = false;
139
matchedSwitch
.WithMinus = (s[pos] == kSwitchMinus);
140
if (
matchedSwitch
.WithMinus)
152
matchedSwitch
.PostCharIndex = kEmptyCharValue;
157
matchedSwitch
.PostCharIndex = kEmptyCharValue;
160
matchedSwitch
.PostCharIndex = index;
174
matchedSwitch
.PostStrings.Add(s.Mid(pos));
[
all
...]
/external/lzma/CS/7zip/Common/
CommandLineParser.cs
99
SwitchResult
matchedSwitch
= _switches[matchedSwitchIndex];
101
if ((!switchForm.Multi) &&
matchedSwitch
.ThereIs)
103
matchedSwitch
.ThereIs = true;
112
matchedSwitch
.WithMinus = false;
115
matchedSwitch
.WithMinus = (srcString[pos] == kSwitchMinus);
116
if (
matchedSwitch
.WithMinus)
128
matchedSwitch
.PostCharIndex = kEmptyCharValue;
133
matchedSwitch
.PostCharIndex = kEmptyCharValue;
136
matchedSwitch
.PostCharIndex = index;
150
matchedSwitch
.PostStrings.Add(srcString.Substring(pos));
[
all
...]
Completed in 197 milliseconds