Searched full:commands (Results 1 – 25 of 483) sorted by relevance
12345678910>>...20
| /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 | 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 | 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 | 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;
|
| /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/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/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());
|
| D | enum_export.sts | 22 export enum Commands {
|
| /arkcompiler/runtime_core/static_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/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/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.
|
| /arkcompiler/runtime_core/static_core/scripts/intrusive-testing/ |
| D | local_intrusive_testing.sh | 137 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/ |
| D | lda.null.yaml | 24 commands:
|
| D | nop.yaml | 25 commands:
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/ |
| D | lda.null.yaml | 24 commands:
|
| D | nop.yaml | 24 commands:
|
| /arkcompiler/ets_runtime/docs/ |
| D | environment-setup-and-compilation.md | 40 **NOTE**: Run the compilation commands in the project root directory.
|
12345678910>>...20