/arkcompiler/ets_frontend/arkguard/test/ut/utils/ |
D | FileUtils.spec.ts | 117 let prefix = 'test/utils/'; variable 119 assert.strictEqual(FileUtils.getPrefix(path), prefix); 124 let prefix = 'D:\\HuaweiApp\\ohsdk\\ets\\3.2.7.5\\'; variable 126 assert.strictEqual(FileUtils.getPrefix(path), prefix); 131 let prefix = undefined; variable 133 assert.strictEqual(FileUtils.getPrefix(path), prefix); 139 let prefix = 'D:\\HuaweiApp'; variable 141 assert.strictEqual(FileUtils.getPathWithoutPrefix(path, prefix), path); 146 let prefix = 'D:\\HuaweiApp'; variable 148 assert.strictEqual(FileUtils.getPathWithoutPrefix(path, prefix), '\\ohsdk\\ets\\3.2.7.5'); [all …]
|
/arkcompiler/ets_frontend/es2panda/test/parser/js/ |
D | test-update-expression-expected.txt | 9 "prefix": true, 54 "prefix": true, 121 "prefix": false, 163 "prefix": true, 167 "prefix": false, 223 "prefix": true, 227 "prefix": true, 231 "prefix": false, 282 "prefix": true, 286 "prefix": false,
|
D | test-unary-expression-expected.txt | 9 "prefix": true, 51 "prefix": true, 96 "prefix": true, 163 "prefix": true, 205 "prefix": true, 247 "prefix": true, 289 "prefix": true, 334 "prefix": true, 366 "prefix": true, 398 "prefix": true, [all …]
|
D | test-template-literal-expected.txt | 58 "prefix": false, 197 "prefix": false, 226 "prefix": false, 336 "prefix": false, 429 "prefix": false,
|
D | invalid-left-hand-side-in-prefix-operation-expected.txt | 1 SyntaxError: Invalid left-hand side operator. [invalid-left-hand-side-in-prefix-operation.js:17:5]
|
D | test-grouping-level-expected.txt | 610 "prefix": false, 665 "prefix": true, 710 "prefix": true, 777 "prefix": true, 781 "prefix": true, 871 "prefix": true,
|
D | test-tagged-template-expression-expected.txt | 101 "prefix": false, 294 "prefix": false, 323 "prefix": false, 460 "prefix": false, 580 "prefix": false,
|
/arkcompiler/runtime_core/scripts/ |
D | install-deps-qemu | 90 local prefix="$1" 93 local src_path="$prefix/src" 109 ./configure --prefix="$prefix" 115 for fname in "$prefix"/bin/qemu-*; do 140 --qemu-prefix=*)
|
D | run_check_atomic_format.py | 62 prefix = res.group(1) 65 if ignored_prefix in prefix:
|
/arkcompiler/runtime_core/isa/ |
D | isapi.rb | 117 def prefix method in Instruction 140 if prefix 141 dig(:opcode_idx) << 8 | prefix.opcode_idx 409 ….instructions.select(&:prefix).stable_sort_by { |i| Panda.prefixes_hash[i.prefix.name].opcode_idx } 424 def secondary_opcode_bound(prefix) argument 425 prefix_data[prefix.name][:number_of_insns] - 1 429 def secondary_opcode_offset(prefix) argument 430 256 + prefix_data[prefix.name][:delta] 438 …prefix_instructions_num = Panda.instructions.select { |i| i.prefix && (i.prefix.name == p.name) }.… 455 @table[prefix(item)] << item.opcode_idx [all …]
|
D | asserts.rb | 48 Panda.prefixes.map do |prefix| 49 … Panda.instructions.select { |insn| insn.prefix && (insn.prefix.name == prefix.name) }.size <= 256 55 insn.format.prefixed? != insn.prefix.nil? 61 next true unless insn.prefix 63 Panda.prefixes.map(&:name).include?(insn.prefix.name)
|
/arkcompiler/toolchain/inspector/ |
D | log_wrapper.cpp | 27 void StripString(const std::string& prefix, std::string& str) in StripString() argument 29 for (auto pos = str.find(prefix, 0); pos != std::string::npos; pos = str.find(prefix, pos)) { in StripString() 30 str.erase(pos, prefix.size()); in StripString()
|
/arkcompiler/toolchain/build/toolchain/ark/ |
D | ark_toolchain.gni | 44 prefix = rebase_path("${clang_base_path}/bin", root_build_dir) 45 cc = "${prefix}/clang" 46 cxx = "${prefix}/clang++" 47 ar = "${prefix}/llvm-ar" 50 strip = "${prefix}/llvm-strip"
|
/arkcompiler/ets_frontend/arkguard/src/utils/ |
D | FileUtils.ts | 111 public static getPathWithoutPrefix(filePath: string, prefix: string): string | undefined { 112 if (!filePath.startsWith(prefix)) { 116 return filePath.slice(prefix.length);
|
/arkcompiler/ets_frontend/es2panda/lexer/templates/ |
D | keywords.h.erb | 57 % prefixes.select{|p| !p.nil? }.each do |prefix| 58 case LEX_CHAR_LOWERCASE_<%=prefix.upcase%>: /* '<%=prefix%>' */ { 60 Scan<%= key.upcase %><%= prefix.upcase %>();
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | logger.cpp | 331 std::string prefix = GetPrefix(level, component); in LogLineInternal() local 332 stream_ << prefix << str << std::endl << std::flush; in LogLineInternal() 337 std::string prefix = GetPrefix(level, component); in LogLineInternal() local 338 stream_ << prefix << str << '\n'; in LogLineInternal() 344 std::string prefix = GetPrefix(level, component); in LogLineInternal() local 345 stream_ << prefix << str; in LogLineInternal() 370 std::string prefix = GetPrefix(level, component); in LogLineInternal() local 371 std::cerr << prefix << str << std::endl << std::flush; in LogLineInternal()
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
D | test-ts-non-null-expression-expected.txt | 79 "prefix": false, 134 "prefix": false, 189 "prefix": true, 244 "prefix": true,
|
/arkcompiler/runtime_core/docs/ |
D | 2022-08-18-isa-changelog.md | 13 1. We delete all original java specific opcodes and delete java specific opcode prefix. 14 2. We remove the prefix of ecmascript specific opcodes, such that most of the bytecode opcode can b… 15 3. We add prefix "deprecated" and keep the many old isa as "deprecated"-prefixed opcodes (for compa… 16 4. We add prefix "throw" and make all throwing opcodes be prefixed by "throw". 17 5. We add prefix "wide" to support opcodes which need larger immediate number.
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/ |
D | expression_2-expected.txt | 369 "prefix": true, 468 "prefix": true, 550 "prefix": false, 621 "prefix": true, 692 "prefix": false, 763 "prefix": true,
|
D | expression_3-expected.txt | 248 "prefix": true, 318 "prefix": true, 371 "prefix": false, 413 "prefix": true, 455 "prefix": false, 497 "prefix": true,
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | recursiveClassInstantiationsWithDefaultConstructors.ts | 23 public prefix: string = "";
|
/arkcompiler/runtime_core/tests/checked/ |
D | CMakeLists.txt | 29 set(prefix ARG) variable 31 cmake_parse_arguments(${prefix} "" "${singleValues}" "${multiValues}" ${ARGN}) 42 set(prefix ARG) variable 45 cmake_parse_arguments(${prefix} "" "${singleValues}" "${multiValues}" ${ARGN}) 112 --run-prefix \"${PANDA_RUN_PREFIX}\"
|
/arkcompiler/runtime_core/cmake/ |
D | Doxygen.cmake | 30 set(prefix ARG) variable 42 cmake_parse_arguments(${prefix}
|
/arkcompiler/ets_runtime/test/quickfix/ |
D | generate_merge_file.py | 37 output_line = args.prefix + line
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
D | bytecode_optimizer_isapi.rb | 155 def prefixed_case(prefix, types, node) argument 156 types = types.map { |t| "#{prefix}#{t}" }
|