Searched full:java (Results 1 – 25 of 82) sorted by relevance
1234
| /arkcompiler/runtime_core/docs/ |
| D | assembly_format.md | 138 - Java 143 .language Java 149 #### Java annotations 151 Currently Panda Assembly supports following Java annotations 155 | `java.access` | Used to specify access level of record, field or function. Possible values: `priv… 156 | `java.extends` | Used to specify inheritance between records. Value is the name of the base recor… 157 | `java.implements` | Used to specify interface inheritance between records. Value is the name of t… 158 | `java.interface` | Used to specify that the record represents Java interface. | 159 | `java.enum` | Used to specify that the record and its fields represent Java enum. | 160 | `java.annotation` | Used to specify that the record represents Java annotation. | [all …]
|
| /arkcompiler/runtime_core/static_core/libpandabase/templates/ |
| D | source_language.h.erb | 26 % if plugin_lang == "JAVA" 27 JAVA_8 = JAVA, 41 % when "JAVA_8" then "Java 8" 42 % when "JAVA" then "Java"
|
| /arkcompiler/runtime_core/static_core/tests/verifier-tests/ |
| D | access_field_nomodifier_core.pa | 15 # - it must fail in Java if the class is nor inherited by current class, nor stays in the same pack… 16 # - in non-Java language context it is OK 18 # Similar Java test to fail verification: 32 # Java access rules:
|
| /arkcompiler/runtime_core/tests/verifier-tests/ |
| D | access_field_nomodifier_core.pa | 15 # - it must fail in Java if the class is nor inherited by current class, nor stays in the same pack… 16 # - in non-Java language context it is OK 18 # Similar Java test to fail verification: 32 # Java access rules:
|
| /arkcompiler/runtime_core/static_core/scripts/dep-lists/ |
| D | ubuntu-dev | 28 openjdk-8-jdk # For running Java benchmarks 29 libasm-java # For running legacy Java files compilation
|
| D | ubuntu-24-04-arm-dev | 28 openjdk-8-jdk # For running Java benchmarks 29 libasm-java=9.7-* # For running legacy Java files compilation
|
| D | ubuntu-20-04-dev | 30 openjdk-8-jdk # For running Java benchmarks 31 libasm-java=7.2-* # For running legacy Java files compilation
|
| D | ubuntu-22-04-arm-dev | 28 openjdk-8-jdk # For running Java benchmarks 29 libasm-java=9.2-* # For running legacy Java files compilation
|
| D | ubuntu-20-04-arm-dev | 27 openjdk-8-jdk # For running Java benchmarks 28 libasm-java=7.2-* # For running legacy Java files compilation
|
| D | ubuntu-24-04-dev | 28 openjdk-8-jdk # For running Java benchmarks 29 libasm-java=9.7-* # For running legacy Java files compilation
|
| D | ubuntu-18-04-arm-dev | 30 openjdk-8-jdk # For running Java benchmarks 31 libasm-java=7.0-* # For running legacy Java files compilation
|
| D | ubuntu-22-04-dev | 29 openjdk-8-jdk # For running Java benchmarks 30 libasm-java=9.2-* # For running legacy Java files compilation
|
| D | ubuntu-18-04-dev | 32 openjdk-8-jdk # For running Java benchmarks 33 libasm-java=7.0-* # For running legacy Java files compilation
|
| /arkcompiler/runtime_core/scripts/dep-lists/ |
| D | ubuntu-dev | 27 openjdk-8-jdk # For running Java benchmarks 28 libasm-java # For running legacy Java files compilation
|
| D | ubuntu-18-04-arm-dev | 27 openjdk-8-jdk=8u312-* # For running Java benchmarks 28 libasm-java=7.0-* # For running legacy Java files compilation
|
| D | ubuntu-20-04-dev | 27 openjdk-8-jdk=8u312-* # For running Java benchmarks 28 libasm-java=7.2-* # For running legacy Java files compilation
|
| D | ubuntu-18-04-dev | 27 openjdk-8-jdk=8u312-* # For running Java benchmarks 28 libasm-java=7.0-* # For running legacy Java files compilation
|
| /arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/java_cases/ |
| D | IteratorTest.java | 16 import java.util.ArrayList; 17 import java.util.Iterator; 18 import java.util.List;
|
| D | FileOperationTest.java | 16 import java.io.FileWriter; 17 import java.io.FileReader; 18 import java.io.IOException;
|
| D | RegexTest.java | 16 import java.util.regex.Matcher; 17 import java.util.regex.Pattern;
|
| /arkcompiler/runtime_core/static_core/verification/config/ |
| D | README.md | 30 java.lang.System::arrayCopy, 0x55, 0x66 31 java.lang.System::arrayRemove
|
| /arkcompiler/runtime_core/libpandafile/templates/ |
| D | source_lang_enum.h.erb | 23 % short_plugin_lang = plugin_lang == "JAVA" ? "JAVA_8" : plugin_lang 63 % when "JAVA" then "Java 8"
|
| /arkcompiler/runtime_core/static_core/libpandafile/ |
| D | modifiers.h | 64 constexpr uint32_t ACC_PROXY = 0x00020000; // class (java runtime) 65 constexpr uint32_t ACC_FAST_NATIVE = 0x00080000; // method (java runtime) 66 constexpr uint32_t ACC_CRITICAL_NATIVE = 0x00100000; // method (java runtime)
|
| /arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/ |
| D | run_javar8.py | 52 …description = "Execute Java test cases and generate a data file with the bytecode file size of the… 54 …parser.add_argument('--java-bin-path', dest='java_bin_path', type=lambda arg : is_dir(parser, arg), 55 help='Path to java root', required=True) 112 java_path = '/'.join([java_bin_path, 'java']) 147 java_runner.add_directory(JAVA_CASES, '.java')
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | modifiers.h | 62 static constexpr uint32_t ACC_PROXY = 0x00020000; // class (java runtime) 63 static constexpr uint32_t ACC_FAST_NATIVE = 0x00080000; // method (java runtime) 64 static constexpr uint32_t ACC_CRITICAL_NATIVE = 0x00100000; // method (java runtime)
|
1234