Home
last modified time | relevance | path

Searched full:commands (Results 1 – 25 of 491) sorted by relevance

12345678910>>...20

/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Denum-supertype.sts16 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)
Dlocal-enum-supertype.sts17 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)
Denum-parameter.sts17 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);
Denum-switch-statement.sts17 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:
Dlocal-enum-switch-statement.sts18 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:
Denum-equality-operators.sts17 enum Commands { Open = "fopen", Close = "fclose", Open2 = "fopen" }
24 if (Commands.Open != Commands.Open2)
26 if (Commands.Open == Commands.Open2)
Dlocal-enum-equality-operators.sts19 enum Commands { Open = "fopen", Close = "fclose", Open2 = "fopen" }
26 if (Commands.Open != Commands.Open2)
28 if (Commands.Open == Commands.Open2)
Dlocal-enum-methods.sts19 enum Commands { Open = "fopen", Close = "fclose" }
29 let d: Commands = Commands.Close
Denum-methods.sts17 enum Commands { Open = "fopen", Close = "fclose" }
27 let d: Commands = Commands.Close
Denum-string-operator-context.sts17 enum Commands { Open = "fopen", Close = "fclose" }
21 let s2 = "String enum:"+ Commands.Open;
Dlocal-enum-string-operator-context.sts19 enum Commands { Open = "fopen", Close = "fclose" }
23 let s2 = "String enum:"+ Commands.Open;
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/
Dtox.ini12 commands = pytest -v ./tests/ key
17 commands = key
38 commands = key
46 commands = key
/arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/
Dtox.ini20 commands = key
32 commands = key
40 commands = key
49 commands = key
/arkcompiler/runtime_core/tests/checked/
DREADME.md14 ## 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/
Dmock_subprocess.py53 def __init__(self, commands: List[FakeCommand]):
54 self.commands = commands
76 for command in self.commands:
/arkcompiler/runtime_core/static_core/tests/checked/
DREADME.md14 ## 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/
Dtest.rb26 @commands = test[Generator::TEST_COMMANDS]
41 LOG.error "Test '#{@test_name}' does not have definition of instruction commands"
49 @commands.each do |raw_command|
Dparser.rb96 # 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/
Dtest.rb26 @commands = test[Generator::TEST_COMMANDS]
41 LOG.error "Test '#{@test_name}' does not have definition of instruction commands"
49 @commands.each do |raw_command|
Dparser.rb96 # 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/
Denum_import.sts16 import { Color, Commands, C } from "./enum_export";
20 console.log(Commands.Open.valueOf());
/arkcompiler/runtime_core/docs/
Ddebugger-vscode-communication.md2 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/
DREADME.md34 Move compile commands to root directory
47 * `compile_commands.json` - json nija-commands file to correct execution clang-tidy.
/arkcompiler/ets_frontend/ets2panda/docs/
Dlowering-phases.md214 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/
DREADME.md34 Move compile commands to root directory
47 * `compile_commands.json` - json nija-commands file to correct execution clang-tidy.

12345678910>>...20