Home
last modified time | relevance | path

Searched full:version (Results 1 – 25 of 6658) sorted by relevance

12345678910>>...267

/arkcompiler/ets_frontend/legacy_bin/api8/
Dpackage-lock.json3 "version": "1.0.0", string
8 "version": "7.15.8", string
16 "version": "7.15.0", string
21 "version": "7.15.8", string
43 "version": "7.15.8", string
53 "version": "7.15.4", string
61 "version": "7.15.4", string
70 "version": "7.15.4", string
81 "version": "7.15.4", string
94 "version": "7.14.5", string
[all …]
/arkcompiler/ets_frontend/ts2panda/
Dpackage-lock.json3 "version": "1.0.0", string
8 "version": "2.2.0", string
17 "version": "7.18.6", string
25 "version": "7.20.14", string
30 "version": "7.20.12", string
52 "version": "7.20.14", string
62 "version": "0.3.2", string
74 "version": "7.18.6", string
82 "version": "7.18.9", string
91 "version": "7.20.7", string
[all …]
/arkcompiler/ets_runtime/ecmascript/base/
Dfile_header.h3 * Licensed under the Apache License, Version 2.0 (the "License");
44 …LOG_HOST_TOOL_ERROR << fileDesc << " version error, expected version should be less or equal than " in VerifyInner()
48 LOG_ECMA(DEBUG) << "Magic:" << ConvToStr(magic_) << ", version:" << GetVersionInner(); in VerifyInner()
57 bool SetVersionInner(std::string version) in SetVersionInner() argument
59 std::vector<std::string> versionNumber = StringHelper::SplitString(version, "."); in SetVersionInner()
61 LOG_ECMA(ERROR) << "version: " << version << " format error"; in SetVersionInner()
67 LOG_ECMA(ERROR) << "version: " << version << " format error"; in SetVersionInner()
/arkcompiler/runtime_core/libpandafile/templates/
Dfile_format_version.h.erb3 * Licensed under the Apache License, Version 2.0 (the "License");
26 constexpr std::array<uint8_t, File::VERSION_SIZE> version {<%= Panda::version.split('.').join(', ')…
29 std::string GetVersion(const std::array<uint8_t, File::VERSION_SIZE> &version);
35 ss << "Bytecode version " << GetVersion(version) << '\n';
36 ss << "Minimum supported bytecode version " << GetVersion(minVersion) << '\n';
Darkcompiler.para.erb2 # Licensed under the Apache License, Version 2.0 (the "License");
15 const.ark.version = <%= Panda::version %>
/arkcompiler/runtime_core/runtime/include/mem/
Dpanda_containers.h3 * Licensed under the Apache License, Version 2.0 (the "License");
35 // Thread local version of PandaForwardList
41 // Thread local version of PandaList
47 // Thread local version of PandaDeque
53 // Thread local version of PandaQueue
59 // Thread local version of PandaStack
65 // Thread local version of PandaSet
71 // Thread local version of PandaUnorderedSet
77 // Thread local version of PandaVector
90 // Thread local version of PandaPriorityQueue
[all …]
/arkcompiler/ets_runtime/ecmascript/platform/unix/
Delf.cpp3 * Licensed under the Apache License, Version 2.0 (the "License");
22 void PackELFHeader(Elf64_Ehdr &header, uint32_t version, kungfu::Triple triple) in PackELFHeader() argument
50 header.e_version = version; in PackELFHeader()
53 bool VerifyELFHeader(const Elf64_Ehdr &header, uint32_t version) in VerifyELFHeader() argument
62 if (header.e_version > version) { in VerifyELFHeader()
63 LOG_ECMA(ERROR) << "Elf format error, expected version should be less or equal than " in VerifyELFHeader()
64 << version << ", but got " << header.e_version; in VerifyELFHeader()
/arkcompiler/runtime_core/disassembler/
Ddisasm.cpp3 * Licensed under the Apache License, Version 2.0 (the "License");
53 const panda::PandArg<bool> &version, int argc, const char **argv) in ProcessArgs() argument
60 if (version.GetValue()) { in ProcessArgs()
103 panda::PandArg<bool> version {"version", false, in main() local
104 … "Ark version, file format version and minimum supported file format version"}; in main()
114 pa_parser.Add(&version); in main()
119 …if (!ProcessArgs(pa_parser, input_file, output_file, debug, debug_file, help, version, argc, argv)… in main()
/arkcompiler/runtime_core/dprof/libdprof/dprof/ipc/
Dipc_message_protocol.h3 * Licensed under the Apache License, Version 2.0 (the "License");
23 const char VERSION[] = "v1"; variable
25 struct Version { struct
26 std::string version; member
/arkcompiler/toolchain/build/toolchain/
Dtoolchain.gni2 # Licensed under the Apache License, Version 2.0 (the "License");
22 # the CLANG_REVISION to use, instead of the version hard-coded into
28 # Compile with Xcode version of clang instead of hermetic version shipped
30 # with the version of clang shipped with Xcode).
57 # Clang compiler version. Clang files are placed at version-dependent paths.
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/prof_dump/
Dmain.cpp3 * Licensed under the Apache License, Version 2.0 (the "License");
24 static const std::string VERSION = "0.0.0.1"; variable
66 {"version", no_argument, nullptr, 'v'}, in ParseCommand()
116 "-v, --version output version information and exit\n"; in GetHelper()
122 return VERSION; in GetVersion()
141 LOG_NO_TAG(ERROR) << "Ver: " << VERSION; in Main()
/arkcompiler/ets_frontend/ts2panda/scripts/
Dts2abc.js3 * Licensed under the Apache License, Version 2.0 (the "License");
56 // keep bc-version to be compatible with old IDE versions
57 if (args.length == 1 && args[0] == "--bc-version") {
63 if (args[0] == "--target-api-version") {
69 args = ["--bc-version"];
/arkcompiler/runtime_core/tests/cts-coverage-tool/
Dspectrac.gemspec2 # Licensed under the Apache License, Version 2.0 (the "License");
18 require_relative 'lib/version'
22 spec.version = Spectrac::VERSION
/arkcompiler/runtime_core/tests/cts-coverage-tool/test/
Dspectrac_test.rb2 # Licensed under the Apache License, Version 2.0 (the "License");
17 require 'version'
22 refute_nil ::Spectrac::VERSION
/arkcompiler/runtime_core/templates/options/
Doptions.h.erb3 * Licensed under the Apache License, Version 2.0 (the "License");
45 parser->Add(&version);
54 return version.GetValue();
58 version.SetValue(value);
62 return version.WasSet();
168 …PandArg<bool> version{"version", false, R"(Ark version, file format version and minimum supported …
/arkcompiler/runtime_core/dprof/libdprof/dprof/
Dprofiling_data.cpp3 * Licensed under the Apache License, Version 2.0 (the "License");
44 ipc::protocol::Version tmp {ipc::protocol::VERSION}; in DumpAndResetFeatures()
49 ipc::Message msgVersion(ipc::Message::Id::VERSION, std::move(versionData)); in DumpAndResetFeatures()
51 LOG(ERROR, DPROF) << "Cannot send version"; in DumpAndResetFeatures()
/arkcompiler/ets_runtime/ecmascript/platform/common/
Delf.cpp3 * Licensed under the Apache License, Version 2.0 (the "License");
47 void PackELFHeader(Elf64_Ehdr &header, uint32_t version, kungfu::Triple triple) in PackELFHeader() argument
75 header.e_version = version; in PackELFHeader()
78 bool VerifyELFHeader([[maybe_unused]] const Elf64_Ehdr &header, [[maybe_unused]] uint32_t version) in VerifyELFHeader() argument
/arkcompiler/runtime_core/
DREADME.md93 | --version | Print version info, including file format version and minimum supported file form…
119 | --version | Print version info, including file format version and minimum supported …
/arkcompiler/runtime_core/scripts/
Dinstall-deps-qemu3 # Licensed under the Apache License, Version 2.0 (the "License");
153 qemu_installed_version=$(qemu-aarch64 --version 2>/dev/null \
154 | grep -Eo 'version [[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+' \
157 qemu_installed_version=$($QEMU_PREFIX/bin/qemu-aarch64 --version 2>/dev/null \
158 | grep -Eo 'version [[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+' \
162 qemu_expected_version="version $QEMU_VERSION"
/arkcompiler/runtime_core/dprof/daemon/
Dmain.cpp3 * Licensed under the Apache License, Version 2.0 (the "License");
35 // Get version in CheckVersion()
41 if (msg.GetId() != ipc::Message::Id::VERSION) { in CheckVersion()
45 ipc::protocol::Version tmp; in CheckVersion()
47 LOG(ERROR, DPROF) << "Cannot convert data to version message"; in CheckVersion()
50 if (tmp.version != ipc::protocol::VERSION) { in CheckVersion()
51 LOG(ERROR, DPROF) << "Incorrect version:" << tmp.version; in CheckVersion()
/arkcompiler/ets_runtime/ecmascript/platform/
Delf.h3 * Licensed under the Apache License, Version 2.0 (the "License");
56 void PackELFHeader(Elf64_Ehdr &header, uint32_t version, kungfu::Triple triple);
58 bool VerifyELFHeader(const Elf64_Ehdr &header, uint32_t version);
/arkcompiler/runtime_core/assembler/
Dpandasm.cpp3 * Licensed under the Apache License, Version 2.0 (the "License");
68 … const panda::PandArg<bool> &version, std::ifstream &inputfile, int argc, const char **argv) in PrepareArgs() argument
75 if (version.GetValue()) { in PrepareArgs()
234 panda::PandArg<bool> version {"version", false, in main() local
235 … "Ark version, file format version and minimum supported file format version"}; in main()
246 pa_parser.Add(&version); in main()
253 …ndasm::PrepareArgs(pa_parser, input_file, output_file, log_file, help, verbose, version, inputfile, in main()
/arkcompiler/runtime_core/libpandafile/tests/
Dfile_format_version_test.cpp3 * Licensed under the Apache License, Version 2.0 (the "License");
25 versionstr += std::to_string(version[i]);
31 EXPECT_EQ(GetVersion(version), versionstr);
/arkcompiler/toolchain/build/
Dark_var.gni2 # Licensed under the Apache License, Version 2.0 (the "License");
15 # build version
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
Dversion.rb2 # Licensed under the Apache License, Version 2.0 (the "License");
17 VERSION = '0.1.0' constant

12345678910>>...267