| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | enum-supertype.sts | 16 enum Commands { Open = "fopen", Close = "fclose" } 17 let c: Commands = Commands.Close 20 if (o instanceof Commands) { 21 let d = o as Commands // And explicitly converted back by 'as' conversion 22 assert(d == Commands.Close) 25 let u : Object | Commands = Commands.Close; 26 if (u instanceof Commands) 28 let d = o as Commands; 29 assert(d == Commands.Close)
|
| D | local-enum-supertype.sts | 17 enum Commands { Open = "fopen", Close = "fclose" } 18 let c: Commands = Commands.Close 21 if (o instanceof Commands) { 22 let d = o as Commands // And explicitly converted back by 'as' conversion 23 assert(d == Commands.Close) 26 let u : Object | Commands = Commands.Close; 27 if (u instanceof Commands) 29 let d = o as Commands; 30 assert(d == Commands.Close)
|
| D | enum-parameter.sts | 17 enum Commands { Open = "fopen", Close = "fclose" } 19 function foo(c: Color, d: Commands): Color { 21 assert (d == Commands.Close); 26 let lambda = (c: Color, d: Commands) => { 28 assert (d == Commands.Close); 33 let close = Commands.Close; 35 assert (lambda(green, close) == Commands.Close);
|
| D | enum-switch-statement.sts | 17 enum Commands { Open = "fopen", Close = "fclose", Open2 = "fopen" } 31 let se : Commands = Commands.Close; 33 case Commands.Open: 36 case Commands.Close: 38 case Commands.Open2:
|
| D | local-enum-switch-statement.sts | 18 enum Commands { Open = "fopen", Close = "fclose", Open2 = "fopen" } 32 let se : Commands = Commands.Close; 34 case Commands.Open: 37 case Commands.Close: 39 case Commands.Open2:
|
| D | enum-equality-operators.sts | 17 enum Commands { Open = "fopen", Close = "fclose", Open2 = "fopen" } 24 if (Commands.Open != Commands.Open2) 26 if (Commands.Open == Commands.Open2)
|
| D | local-enum-equality-operators.sts | 19 enum Commands { Open = "fopen", Close = "fclose", Open2 = "fopen" } 26 if (Commands.Open != Commands.Open2) 28 if (Commands.Open == Commands.Open2)
|
| D | local-enum-methods.sts | 19 enum Commands { Open = "fopen", Close = "fclose" } 29 let d: Commands = Commands.Close
|
| D | enum-methods.sts | 17 enum Commands { Open = "fopen", Close = "fclose" } 27 let d: Commands = Commands.Close
|
| D | enum-string-operator-context.sts | 17 enum Commands { Open = "fopen", Close = "fclose" } 21 let s2 = "String enum:"+ Commands.Open;
|
| D | local-enum-string-operator-context.sts | 19 enum Commands { Open = "fopen", Close = "fclose" } 23 let s2 = "String enum:"+ Commands.Open;
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/ |
| D | tox.ini | 12 commands = pytest -v ./tests/ key 17 commands = key 38 commands = key 46 commands = key
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/ |
| D | tox.ini | 20 commands = key 32 commands = key 40 commands = key 49 commands = key
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | README.md | 14 ## List of commands 30 * **PASS_AFTER** (pass_name: string) specify pass after which IR commands should operate 32 * **INST** (inst: pattern) search specified instruction in the ir dump file specified by commands `… 35 …specified phrase and counts the number in the ir dump file specified by commands `METHOD` and `PAS… 38 * **SKIP_IF** (condition) if condition is `true`, skip all commands from that to end of this checker
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/tests/fixtures/ |
| D | mock_subprocess.py | 53 def __init__(self, commands: List[FakeCommand]): 54 self.commands = commands 76 for command in self.commands:
|
| /arkcompiler/runtime_core/static_core/tests/checked/ |
| D | README.md | 14 ## List of commands 30 * **PASS_AFTER** (pass_name: string) specify pass after which IR commands should operate 32 * **INST** (inst: pattern) search specified instruction in the ir dump file specified by commands `… 35 …specified phrase and counts the number in the ir dump file specified by commands `METHOD` and `PAS… 38 * **SKIP_IF** (condition) if condition is `true`, skip all commands from that to end of this checker
|
| /arkcompiler/runtime_core/tests/cts-generator/generator/ |
| D | test.rb | 26 @commands = test[Generator::TEST_COMMANDS] 41 LOG.error "Test '#{@test_name}' does not have definition of instruction commands" 49 @commands.each do |raw_command|
|
| D | parser.rb | 96 # Process all commands 102 # Process commands, if it has only, to only them should be processed
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/generator/ |
| D | test.rb | 26 @commands = test[Generator::TEST_COMMANDS] 41 LOG.error "Test '#{@test_name}' does not have definition of instruction commands" 49 @commands.each do |raw_command|
|
| D | parser.rb | 96 # Process all commands 102 # Process commands, if it has only, to only them should be processed
|
| /arkcompiler/ets_frontend/ets2panda/test/compiler/ets/import_tests/ |
| D | enum_import.sts | 16 import { Color, Commands, C } from "./enum_export"; 20 console.log(Commands.Open.valueOf());
|
| /arkcompiler/runtime_core/docs/ |
| D | debugger-vscode-communication.md | 2 Server is an application that accepts commands through the socket and executes them in debugger 8 VSCode provides us client interface and sending commands to the debugger with socket
|
| /arkcompiler/runtime_core/cmake/ |
| D | README.md | 34 Move compile commands to root directory 47 * `compile_commands.json` - json nija-commands file to correct execution clang-tidy.
|
| /arkcompiler/ets_frontend/ets2panda/docs/ |
| D | lowering-phases.md | 214 enum Commands { 219 function f(d: Commands): boolean { 220 return d == Commands.Close 225 enum Commands { 230 function f(d: Commands): boolean { 231 return (#Commands.toString(d) == #Commands.toString(Commands.Close));
|
| /arkcompiler/runtime_core/static_core/cmake/ |
| D | README.md | 34 Move compile commands to root directory 47 * `compile_commands.json` - json nija-commands file to correct execution clang-tidy.
|