Home
last modified time | relevance | path

Searched full:commands (Results 1 – 25 of 483) 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)
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:
Denum-equality-operators.sts17 enum Commands { Open = "fopen", Close = "fclose", Open2 = "fopen" }
24 if (Commands.Open != Commands.Open2)
26 if (Commands.Open == Commands.Open2)
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;
/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/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/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());
Denum_export.sts22 export enum Commands {
/arkcompiler/runtime_core/static_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/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/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.
/arkcompiler/runtime_core/static_core/scripts/intrusive-testing/
Dlocal_intrusive_testing.sh137 echo "Build ARK and tests to create a commands graph"
140 echo "Cannot build ARK and tests to create a commands graph"
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dlda.null.yaml24 commands:
Dnop.yaml25 commands:
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Dlda.null.yaml24 commands:
Dnop.yaml24 commands:
/arkcompiler/ets_runtime/docs/
Denvironment-setup-and-compilation.md40 **NOTE**: Run the compilation commands in the project root directory.

12345678910>>...20