Home
last modified time | relevance | path

Searched full:formats (Results 1 – 25 of 91) sorted by relevance

1234

/arkcompiler/runtime_core/libabckit/src/irbuilder_dynamic/templates/
Dbytecode_inst-inl_gen.h.erb41 % formats = Set.new
47 % next if formats.include? fmt
48 % formats.add(fmt)
62 % formats = Set.new
68 % next if formats.include? fmt
69 % formats.add(fmt)
83 % formats = Set.new
89 % next if formats.include? fmt
90 % formats.add(fmt)
104 % formats = Set.new
[all …]
Dbytecode_inst_enum_gen.h.erb17 % Panda::formats.each do |fmt|
/arkcompiler/runtime_core/static_core/libpandafile/templates/
Dbytecode_instruction_enum_gen.h.erb17 % Panda::formats.map(&:pretty).map(&:upcase).each do |fmt|
55 std::array<const char*, <%= Panda::formats.size %>> formats = {
56 % Panda::formats.each do |fmt|
60 return formats[static_cast<unsigned>(format)];
Dbytecode_instruction-inl_gen.h.erb22 % q_insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
41 % q_insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
60 % q_insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
79 % Panda::formats.each do |fmt|
98 % formats = insns.map{ |i| i.format }.uniq
99 return <%= formats.map{ |f| "format == Format::#{f.pretty.upcase}" }.join(' || ') %>;
110 % formats = insns.map{ |i| i.format }.uniq
111 return <%= formats.map{ |f| "format == Format::#{f.pretty.upcase}" }.join(' || ') %>;
122 % formats = insns.map{ |i| i.format }.uniq
123 return <%= formats.map{ |f| "format == Format::#{f.pretty.upcase}" }.join(' || ') %>;
[all …]
Dbytecode_emitter_def_gen.h.erb19 % # formats = group.map(&:format)
/arkcompiler/runtime_core/static_core/runtime/templates/
Dbridge_dispatch.S.erb18 % formats = classified_calls.keys
20 % formats.each do |fmt|
28 % formats.each do |fmt|
Dbridge_dispatch_dyn.S.erb18 % formats = classified_calls.keys
20 % formats.each do |fmt|
28 % formats.each do |fmt|
/arkcompiler/ets_frontend/es2panda/compiler/templates/
Dformats.h.erb59 % formats = group.map {|i| make_format(i,insn) }
61 % formats.each.with_index do |fmt, index|
74 constexpr std::array<const Format, <%= formats.length %>> <%= get_format_name(mnemonic) %> = {{
75 % format_items = (0..(formats.length - 1)).map {|index| "{" + get_format_item_name(mnemonic, index)…
/arkcompiler/ets_frontend/ets2panda/compiler/templates/
Dformats.h.erb60 % formats = group.map {|i| make_format(i,insn) }
62 % formats.each.with_index do |fmt, index|
75 constexpr std::array<const Format, <%= formats.length %>> <%= get_format_name(mnemonic) %> = {{
76 % format_items = (0..(formats.length - 1)).map {|index| "{" + get_format_item_name(mnemonic, index)…
Disa.h.erb29 #include "generated/formats.h"
39 Formats GetFormats() const override
138 Formats GetFormats() const override
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DNumberFormat.sts24 * @param locale locale from which to load formats and symbols for number formatting
34 …* Formats a number according to the locale and formatting options of this Intl.NumberFormat object.
45 …* Formats a number according to the locale and formatting options of this Intl.NumberFormat object.
59 …* Formats a range of numbers according to the locale and formatting options of this Intl.NumberFor…
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Descompat_Date.cpp65 auto formatS = std::string(format->ConvertToStringView(&buf)); in EscompatDateGetLocaleString() local
71 ss << std::put_time(std::gmtime(&seconds), formatS.c_str()); in EscompatDateGetLocaleString()
73 ss << std::put_time(std::localtime(&seconds), formatS.c_str()); in EscompatDateGetLocaleString()
/arkcompiler/ets_runtime/script/
Dbuild_resource_to_cpp.py38 formats = ","
43 byte_code = formats.join(seq);
/arkcompiler/runtime_core/libpandafile/templates/
Dbytecode_instruction-inl_gen.h.erb20 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
39 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
58 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
77 % Panda::formats.each do |fmt|
93 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
127 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
159 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
188 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
220 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
251 % insns_uniq_sort_fmts.each do |i| # Panda::formats.each do |fmt|
[all …]
Dbytecode_emitter_def_gen.h.erb19 % # formats = group.map(&:format)
Dbytecode_instruction_enum_gen.h.erb17 % Panda::formats.each do |fmt|
/arkcompiler/ets_frontend/es2panda/compiler/core/
DregAllocator.h82 Formats formats = ins->GetFormats(); variable
84 for (const auto &format : formats) {
/arkcompiler/ets_frontend/ets2panda/compiler/core/
Demitter.cpp145 static Format MatchFormat(const IRNode *node, const Formats &formats) in MatchFormat() argument
151 const auto *iter = formats.begin(); in MatchFormat()
153 …for (; iter != formats.end(); iter++) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in MatchFormat()
174 Formats formats = node->GetFormats(); in GetIRNodeWholeLength() local
175 if (formats.empty()) { in GetIRNodeWholeLength()
180 const auto format = MatchFormat(node, formats); in GetIRNodeWholeLength()
/arkcompiler/runtime_core/libabckit/doc/
Dimplementation_description.md5 AbcKit works with these file formats using "dynamic" and "static" runtimes.
13 5. [Dispatch between dynamic and static file formats](#dispatch-between-dynamic-and-static-file-for…
125 ## Dispatch between dynamic and static file formats
127 Lots of APIs are able to work with both dynamic and static file formats depending on source languag…
/arkcompiler/ets_frontend/es2panda/ir/
Dirnode.h91 using Formats = panda::Span<const Format>; variable
120 virtual Formats GetFormats() const = 0;
/arkcompiler/runtime_core/docs/
Dpanda-runtime.md23 ## Intermediate File Formats
/arkcompiler/runtime_core/static_core/docs/
Dpanda-runtime.md23 ## Intermediate File Formats
/arkcompiler/ets_frontend/ets2panda/ir/
Dirnode.h103 using Formats = ark::Span<const Format>; variable
148 virtual Formats GetFormats() const = 0;
/arkcompiler/runtime_core/isa/templates/
Disa.md.erb32 * formats: <%= i.format.join(", ") %>
/arkcompiler/runtime_core/static_core/isa/templates/
Disa.md.erb32 * formats: <%= i.format.join(", ") %>

1234