/external/lzma/CS/7zip/Common/ |
CommandLineParser.cs | 8 public enum SwitchType
20 public SwitchType Type;
26 public SwitchForm(string idString, SwitchType type, bool multi,
36 public SwitchForm(string idString, SwitchType type, bool multi, int minLen):
40 public SwitchForm(string idString, SwitchType type, bool multi):
106 SwitchType type = switchForm.Type;
109 case SwitchType.PostMinus:
121 case SwitchType.PostChar:
142 case SwitchType.LimitedPostString:
143 case SwitchType.UnLimitedPostString: [all...] |
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
LzmaAlone.cs | 131 kSwitchForms[sw++] = new SwitchForm("?", SwitchType.Simple, false);
132 kSwitchForms[sw++] = new SwitchForm("H", SwitchType.Simple, false);
133 kSwitchForms[sw++] = new SwitchForm("A", SwitchType.UnLimitedPostString, false, 1);
134 kSwitchForms[sw++] = new SwitchForm("D", SwitchType.UnLimitedPostString, false, 1);
135 kSwitchForms[sw++] = new SwitchForm("FB", SwitchType.UnLimitedPostString, false, 1);
136 kSwitchForms[sw++] = new SwitchForm("LC", SwitchType.UnLimitedPostString, false, 1);
137 kSwitchForms[sw++] = new SwitchForm("LP", SwitchType.UnLimitedPostString, false, 1);
138 kSwitchForms[sw++] = new SwitchForm("PB", SwitchType.UnLimitedPostString, false, 1);
139 kSwitchForms[sw++] = new SwitchForm("MF", SwitchType.UnLimitedPostString, false, 1);
140 kSwitchForms[sw++] = new SwitchForm("EOS", SwitchType.Simple, false); [all...] |
/external/v8/src/ |
type-info.h | 293 TypeInfo SwitchType(CaseClause* clause);
|
ast.cc | 466 TypeInfo info = oracle->SwitchType(this); [all...] |
type-info.cc | 430 TypeInfo TypeFeedbackOracle::SwitchType(CaseClause* clause) {
|
hydrogen.h | 751 enum SwitchType { UNKNOWN_SWITCH, SMI_SWITCH, STRING_SWITCH }; [all...] |
hydrogen.cc | [all...] |
/external/llvm/utils/TableGen/ |
DAGISelMatcher.h | 63 SwitchType, // Dispatch based on type. 531 : Matcher(SwitchType), Cases(cases, cases+numcases) {} 534 return N->getKind() == SwitchType; [all...] |
DAGISelMatcherEmitter.cpp | 268 case Matcher::SwitchType: { 321 "/*SwitchOpcode*/ " : "/*SwitchType*/ "); 758 case Matcher::SwitchType: OS << "OPC_SwitchType"; break;
|
/external/chromium_org/v8/src/ |
typing.cc | 154 SwitchStatement::SwitchType switch_type = stmt->switch_type(); 164 SwitchStatement::SwitchType label_switch_type =
|
ast.h | 1156 enum SwitchType { UNKNOWN_SWITCH, SMI_SWITCH, STRING_SWITCH, GENERIC_SWITCH }; 1157 SwitchType switch_type() const { return switch_type_; } 1158 void set_switch_type(SwitchType switch_type) { switch_type_ = switch_type; } 1169 SwitchType switch_type_; [all...] |