Home
last modified time | relevance | path

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

12345678910>>...20

/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Denum-supertype.ets16 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 assertEQ(d, Commands.Close)
25 let u : Object | Commands = Commands.Close;
26 if (u instanceof Commands)
28 let d = o as Commands;
29 assertEQ(d, Commands.Close)
Dlocal-enum-supertype.ets17 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 assertEQ(d, Commands.Close)
26 let u : Object | Commands = Commands.Close;
27 if (u instanceof Commands)
29 let d = o as Commands;
30 assertEQ(d, Commands.Close)
Denum-parameter.ets17 enum Commands { Open = "fopen", Close = "fclose" }
19 function foo(c: Color, d: Commands): Color {
21 assertEQ(d, Commands.Close)
26 let lambda = (c: Color, d: Commands) => {
28 assertEQ(d, Commands.Close)
33 let close = Commands.Close;
35 assertEQ(lambda(green, close), Commands.Close)
Denum-switch-statement.ets17 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.ets18 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:
Dlocal-enum-equality-operators.ets19 enum Commands { Open = "fopen", Close = "fclose", Open2 = "fopen" }
26 if (Commands.Open != Commands.Open2)
28 if (Commands.Open == Commands.Open2)
Denum-equality-operators.ets17 enum Commands { Open = "fopen", Close = "fclose", Open2 = "fopen" }
24 if (Commands.Open != Commands.Open2)
26 if (Commands.Open == Commands.Open2)
Dnullable_readonly_property.ets24 readonly commands?: ReadonlyArray<string>;
31 arktest.assertEQ(options![0].commands, undefined);
34 arktest.assertEQ(options![1].commands, undefined);
38 arktest.assertEQ(options![2].commands, undefined);
42 arktest.assertEQ(options![3].commands![0], "CMD1");
51 …lement interface 'I4'", actions: [ { type: "IB", id: "IB1" } ] as Actions[], commands: [ "CMD1" ] }
Denum-methods.ets17 enum Commands { Open = "fopen", Close = "fclose" }
27 let d: Commands = Commands.Close
Dlocal-enum-methods.ets19 enum Commands { Open = "fopen", Close = "fclose" }
29 let d: Commands = Commands.Close
Dlocal-enum-string-operator-context.ets19 enum Commands { Open = "fopen", Close = "fclose" }
23 let s2 = "String enum:"+ Commands.Open;
Denum-string-operator-context.ets17 enum Commands { Open = "fopen", Close = "fclose" }
21 let s2 = "String enum:"+ Commands.Open;
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/
Dtox.ini12 commands = pytest -v ./tests/ key
17 commands = key
39 commands = key
48 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
78 for command in self.commands:
/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|
/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|
/arkcompiler/ets_frontend/ets2panda/test/compiler/ets/import_tests/
Denum_import.ets16 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/static_core/tests/checked/
DREADME.md14 ## List of commands
46 * **PASS_AFTER** (pass_name: string) specify pass after which IR commands should operate
48 * **INST** (inst: pattern) search specified instruction in the ir dump file specified by commands `…
51 …specified phrase and counts the number in the ir dump file specified by commands `METHOD` and `PAS…
54 * **SKIP_IF** (condition) if condition is `true`, skip all commands from that to end of this checker
/arkcompiler/ets_frontend/ets2panda/lsp/src/register_code_fix/
Dadd_missing_declare_property.cpp70 codeAction.commands.push_back(codeActionCommand); in GetCodeActions()
88 combinedCodeActions.commands = changes.commands; in GetAllCodeActions()
/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