/arkcompiler/runtime_core/scripts/ |
H A D | install-third-party | 73 echo "$MSG_PREFIX No patch directory $patch_dir for $lib_name" 78 readarray -t patches <<< "$(find "$patch_dir" -name '*.patch' | sort)" 79 for patch in "${patches[@]}" 81 git apply --ignore-space-change --check "$patch" 82 git am --ignore-space-change "$patch" 124 echo "$MSG_PREFIX Invalid patch mode for $lib_name: $patch_mode"
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
H A D | test_cli.py | 27 from unittest.mock import patch namespace 31 return patch.object(sys, 'argv', ['vmb'] + line.split())
|
H A D | test_doclet.py | 24 from unittest.mock import patch namespace 343 with patch.object(sys, 'argv', 'vmb gen --lang sts -fi 123 blah'.split()): 406 with patch.object(sys, 'argv', 'vmb gen --lang sts blah'.split()): 415 with patch.object(sys, 'argv', 424 with patch.object(
|
/arkcompiler/toolchain/build/config/mac/ |
H A D | sdk_info.py | 45 major, minor, patch = split_version(version) 46 return ('%2s%s%s' % (major, minor, patch)).replace(' ', '0')
|
/arkcompiler/runtime_core/static_core/scripts/ |
H A D | install-third-party | 151 echo "$MSG_PREFIX No patch directory $patch_dir for $lib_name" 156 readarray -t patches <<< "$(find "$patch_dir" -name '*.patch' | sort)" 157 for patch in "${patches[@]}" 159 git apply --ignore-space-change --check "$patch" 160 git am --ignore-space-change "$patch" 206 echo "$MSG_PREFIX Invalid patch mode for $lib_name: $patch_mode"
|
/arkcompiler/ets_frontend/es2panda/test/patch/11/hotfix/hotfix-throwerror/modify-export-1/ |
H A D | base_mod.js | 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/coldfix/coldfix-throwerror/modify-export-1/ |
H A D | base_mod.js | 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/hotfix/hotfix-throwerror/modify-export-1/ |
H A D | base_mod.js | 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
/arkcompiler/ets_frontend/es2panda/test/patch/11/coldfix/coldfix-throwerror/modify-export-1/ |
H A D | base_mod.js | 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
/arkcompiler/ets_frontend/es2panda/test/patch/11/coldreload/modify-export-1/ |
H A D | base_mod.js | 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
/arkcompiler/ets_frontend/es2panda/test/patch/11/hotreload/hotreload-throwerror/modify-export-1/ |
H A D | base_mod.js | 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/coldreload/modify-export-1/ |
H A D | base_mod.js | 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
/arkcompiler/ets_frontend/es2panda/test/patch/currentVersion/hotreload/hotreload-throwerror/modify-export-1/ |
H A D | base_mod.js | 23 v2 as patch, // modify export variable's name from 'base' to 'patch'
|
/arkcompiler/runtime_core/static_core/static_linker/ |
H A D | linker.h | 35 uint64_t patch {};
|
/arkcompiler/ets_runtime/ecmascript/patch/ |
H A D | quick_fix_manager.cpp | 15 #include "ecmascript/patch/quick_fix_manager.h" 40 // callback and load patch. in LoadPatchIfNeeded() 50 LOG_ECMA(DEBUG) << "Do not need check " << baseFileName << " has patch again"; in LoadPatchIfNeeded() 57 LOG_ECMA(INFO) << "Do not need load patch of: " << baseFileName; in LoadPatchIfNeeded() 64 LOG_ECMA(ERROR) << "load patch jsPandafile failed of: " << baseFileName; in LoadPatchIfNeeded() 75 LOG_ECMA(ERROR) << "Load patch fail of: " << baseFileName; in LoadPatchIfNeeded() 85 LOG_ECMA(INFO) << "Load patch, patch: " << patchFileName << ", base:" << baseFileName; in LoadPatch() 87 LOG_ECMA(ERROR) << "Cannot repeat load patch!"; in LoadPatch() 102 LOG_ECMA(ERROR) << "load patch jsPandafil in LoadPatch() 255 MethodLiteral *patch = item.second; IsQuickFixCausedException() local [all...] |
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/ |
H A D | elf_builder.h | 423 // Some dark magic there. Here we patch the address of JIT code in frame debug info entry. in HackAddressesForJit() 653 std::for_each(patches_.begin(), patches_.end(), [](auto &patch) { patch.Patch(); }); in Build()
|