/third_party/typescript/tests/baselines/reference/ |
H A D | stringEnumLiteralTypes3.js | 2 const enum Choice { Unknown = "", Yes = "yes", No = "no" }; 4 type Yes = Choice.Yes; 5 type YesNo = Choice.Yes | Choice.No; 6 type NoYes = Choice.No | Choice.Yes; 7 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 9 function f1(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { [all...] |
H A D | enumLiteralTypes3.js | 2 const enum Choice { Unknown, Yes, No }; 4 type Yes = Choice.Yes; 5 type YesNo = Choice.Yes | Choice.No; 6 type NoYes = Choice.No | Choice.Yes; 7 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 9 function f1(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { [all...] |
H A D | stringEnumLiteralTypes1.js | 2 const enum Choice { Unknown = "", Yes = "yes", No = "no" }; 4 type YesNo = Choice.Yes | Choice.No; 5 type NoYes = Choice.No | Choice.Yes; 6 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 11 var a: Choice.Yes | Choice [all...] |
H A D | stringEnumLiteralTypes2.js | 2 const enum Choice { Unknown = "", Yes = "yes", No = "no" }; 4 type YesNo = Choice.Yes | Choice.No; 5 type NoYes = Choice.No | Choice.Yes; 6 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 11 var a: Choice.Yes | Choice [all...] |
H A D | enumLiteralTypes1.js | 2 const enum Choice { Unknown, Yes, No }; 4 type YesNo = Choice.Yes | Choice.No; 5 type NoYes = Choice.No | Choice.Yes; 6 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 11 var a: Choice.Yes | Choice [all...] |
H A D | enumLiteralTypes2.js | 2 const enum Choice { Unknown, Yes, No }; 4 type YesNo = Choice.Yes | Choice.No; 5 type NoYes = Choice.No | Choice.Yes; 6 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 11 var a: Choice.Yes | Choice [all...] |
H A D | controlFlowManyConsecutiveConditionsNoTimeout.js | 2 export enum Choice { 7 const choice: Choice = Choice.One; 8 const choiceOne = Choice.One; 138 exports.Choice = void 0;
139 var Choice;
variable 140 (function (Choice) {
141 Choice[Choice["One"] = 0] = "One";
142 Choice[Choic [all...] |
H A D | functionOverloadsRecursiveGenericReturnType.js | 10 function Choice<T>(args: T[]): A<T>; 11 function Choice<T>(...v_args: T[]): A<T>; 12 function Choice<T>(...v_args: any[]): A<T>{ 28 function Choice() {
function
|
H A D | overloadGenericFunctionWithRestArgs.js | 8 function Choice<T>(...v_args: T[]): A<T>; 9 function Choice<T>(...v_args: T[]): A<T> { 24 function Choice() {
function
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/ |
H A D | CalendarFrame.java | 14 import java.awt.Choice; 88 private Choice displayMenu; 92 private Choice calMenu[] = new Choice[2]; 130 calMenu[i] = new Choice(); in init() 181 displayMenu = new Choice(); in init()
|
H A D | CalendarCalc.java | 15 import java.awt.Choice; 156 Choice dateMenu; 157 Choice localeMenu; 235 dateMenu= new Choice(); in buildGUI() 268 localeMenu= new Choice(); in buildGUI()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/rbnf/ |
H A D | RbnfDemo.java | 15 import java.awt.Choice; 335 formatterMenu = new Choice(); in createDemoFrame() 342 Choice source = (Choice)(e.getSource()); in createDemoFrame() 366 ruleSetMenu = new Choice(); in createDemoFrame() 476 private Choice formatterMenu; 477 private Choice ruleSetMenu;
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/ |
H A D | HolidayCalendarDemo.java | 15 import java.awt.Choice; 159 private Choice localeMenu; 160 private Choice displayMenu; 196 localeMenu= new Choice(); in buildGUI() 220 displayMenu = new Choice(); in buildGUI()
|
/third_party/lzma/CPP/7zip/Bundles/LzmaSpec/ |
H A D | LzmaSpec.cpp | 275 CProb Choice;
member in CLenDecoder 285 Choice = PROB_INIT_VAL;
in Init() 297 if (rc->DecodeBit(&Choice) == 0)
in Decode()
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 487 struct CaseSensitive { enum Choice { enum 3541 CasedString( std::string const& str, CaseSensitive::Choice caseSensitivity ); 3545 CaseSensitive::Choice m_caseSensitivity; 3575 RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity ); 3581 CaseSensitive::Choice m_caseSensitivity; 3589 StdString::EqualsMatcher Equals( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes ); 3590 StdString::ContainsMatcher Contains( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes ); 3591 StdString::EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes ); 3592 StdString::StartsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes ); 3593 StdString::RegexMatcher Matches( std::string const& regex, CaseSensitive::Choice caseSensitivit [all...] |
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-nodes.h | 28 VISIT(Choice) \
|