Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/arkcompiler/ets_frontend/arkguard/test/ut/utils/
DFileUtils.spec.ts117 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/ets2panda/test/parser/js/
Dtest-update-expression-expected.txt9 "prefix": true,
55 "prefix": true,
124 "prefix": false,
167 "prefix": true,
171 "prefix": false,
228 "prefix": true,
232 "prefix": true,
236 "prefix": false,
288 "prefix": true,
292 "prefix": false,
Dtest-unary-expression-expected.txt9 "prefix": true,
52 "prefix": true,
98 "prefix": true,
167 "prefix": true,
210 "prefix": true,
253 "prefix": true,
296 "prefix": true,
341 "prefix": true,
374 "prefix": true,
407 "prefix": true,
[all …]
Dinvalid-left-hand-side-in-prefix-operation-expected.txt1 SyntaxError: Invalid left-hand side in prefix operation [invalid-left-hand-side-in-prefix-operation…
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-update-expression-expected.txt9 "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,
Dtest-unary-expression-expected.txt9 "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 …]
/arkcompiler/runtime_core/scripts/
Dinstall-deps-qemu90 local prefix="$1"
93 local src_path="$prefix/src"
109 ./configure --prefix="$prefix"
115 for fname in "$prefix"/bin/qemu-*; do
140 --qemu-prefix=*)
/arkcompiler/runtime_core/static_core/scripts/
Dinstall-deps-qemu90 local prefix="$1"
93 local src_path="$prefix/src"
115 ./configure --prefix="$prefix"
121 for fname in "$prefix"/bin/qemu-*; do
146 --qemu-prefix=*)
/arkcompiler/runtime_core/static_core/compiler/tools/debug/
Djit_writer.cpp28 CodePrefix prefix; in FillData() local
33 prefix.codeSize = method.GetCode().size(); in FillData()
34prefix.codeInfoOffset = codeOffset + RoundUp(method.GetCode().size(), CodeInfo::ALIGNMENT); in FillData()
35 prefix.codeInfoSize = method.GetCodeInfo().size(); in FillData()
38 const char *data = reinterpret_cast<char *>(&prefix); in FillData()
39 CopyToSpan(stream, data, sizeof(prefix), currPos); in FillData()
40 currPos += sizeof(prefix); in FillData()
43 currPos += codeOffset - sizeof(prefix); in FillData()
/arkcompiler/runtime_core/static_core/runtime/
Druntime_controller.cpp35 static bool StartsWith(std::string_view s, std::string_view prefix) in StartsWith() argument
37 return (s.size() >= prefix.size()) && std::equal(prefix.begin(), prefix.end(), s.begin()); in StartsWith()
/arkcompiler/runtime_core/isa/
Disapi.rb117 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 …]
Dasserts.rb48 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/runtime_core/static_core/isa/
Dasserts.rb48 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)
Disapi.rb117 def prefix method in Instruction
144 if prefix
145 dig(:opcode_idx) << 8 | prefix.opcode_idx
394 ….instructions.select(&:prefix).stable_sort_by { |i| Panda.prefixes_hash[i.prefix.name].opcode_idx }
409 def secondary_opcode_bound(prefix) argument
410 prefix_data[prefix.name][:number_of_insns] - 1
414 def secondary_opcode_offset(prefix) argument
415 256 + prefix_data[prefix.name][:delta]
423 …prefix_instructions_num = Panda.instructions.select { |i| i.prefix && (i.prefix.name == p.name) }.…
440 @table[prefix(item)] << item.opcode_idx
[all …]
/arkcompiler/runtime_core/static_core/verification/
DVerification.cmake59 set(prefix ARG) variable
63 cmake_parse_arguments(${prefix}
82 set(prefix ARG) variable
86 cmake_parse_arguments(${prefix}
103 set(prefix ARG) variable
107 cmake_parse_arguments(${prefix}
/arkcompiler/toolchain/common/
Dlog_wrapper.cpp27 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/
Dark_toolchain.gni44 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/runtime_core/static_core/compiler/tools/aotdump/
Daotdump.cpp302 …void PrintCode(const char *prefix, const AotFile &aotFile, const CodeInfo &codeInfo, std::ostream … in PrintCode() argument
309 return PrintCodeArm64(prefix, codeInfo, stream, pfile); in PrintCode()
313 return PrintCodeX8664(prefix, codeInfo, stream, pfile); in PrintCode()
316 stream << prefix << "Unsupported target arch: " << GetArchString(arch) << std::endl; in PrintCode()
322 void PrintCodeArm64(const char *prefix, const CodeInfo &codeInfo, std::ostream &stream, in PrintCodeArm64() argument
338 PrintStackmap(stream, prefix, codeInfo, stackmap, Arch::AARCH64, pfile); in PrintCodeArm64()
341 … stream << prefix << std::hex << std::setw(8U) << std::setfill('0') << instr - startInstr << ": " in PrintCodeArm64()
349 void PrintCodeX8664(const char *prefix, const CodeInfo &codeInfo, std::ostream &stream, in PrintCodeX8664() argument
382 PrintStackmap(stream, prefix, codeInfo, stackmap, Arch::X86_64, pfile); in PrintCodeX8664()
384 … stream << prefix << std::hex << std::setw(8U) << std::setfill('0') << pos << ": " << buffer.data() in PrintCodeX8664()
[all …]
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DlambdaExpressionWithRestParameter.ets16 type LambdaType = (prefix: string, ...args: string[]) => string;
21 let lam: LambdaType = (prefix: string, ...args: string[]): string => {
22 let ret = prefix;
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/
Dunary_op-expected.txt152 "prefix": false,
224 "prefix": false,
296 "prefix": true,
367 "prefix": true,
439 "prefix": true,
567 "prefix": true,
639 "prefix": true,
805 "prefix": false,
871 "prefix": false,
937 "prefix": true,
[all …]
/arkcompiler/ets_frontend/es2panda/lexer/templates/
Dkeywords.h.erb57 % prefixes.select{|p| !p.nil? }.each do |prefix|
58 case LEX_CHAR_LOWERCASE_<%=prefix.upcase%>: /* '<%=prefix%>' */ {
60 Scan<%= key.upcase %><%= prefix.upcase %>();
/arkcompiler/ets_frontend/arkguard/src/utils/
DFileUtils.ts114 public static getPathWithoutPrefix(filePath: string, prefix: string): string | undefined {
115 if (!filePath.startsWith(prefix)) {
119 return filePath.slice(prefix.length);
/arkcompiler/runtime_core/libpandabase/utils/
Dlogger.cpp331 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/
Dtest-class-constructor19-expected.txt106 "prefix": "#",
154 "prefix": "#",
233 "prefix": "#",
281 "prefix": "#",
360 "prefix": "#",
467 "prefix": "#",
574 "prefix": "#",
681 "prefix": "#",
/arkcompiler/runtime_core/static_core/runtime/entrypoints/
Dentrypoints_gen.h.erb46 % prefix = '"C"'
49 extern <%= prefix %> <%= entrypoint.signature[0] %> <%= entrypoint.bridge_name %>(<%= entrypoint.si…
59 extern <%= prefix %> <%= entrypoint.signature[0] %> <%= entrypoint.entrypoint %>(<%= entrypoint.sig…
63 extern <%= prefix %> <%= entrypoint.signature[0] %> <%= entrypoint.entrypoint %>(<%= entrypoint.sig…

12345678910>>...12