| /arkcompiler/toolchain/test/autotest/aw/cdp/ |
| D | debugger.py | 26 url: str 31 json = {'url': self.url, 49 def remove_breakpoints_by_url(url: str): 51 'params': {'url': url}}
|
| /arkcompiler/ets_runtime/ecmascript/extractortool/src/ |
| D | source_map.cpp | 121 std::string url; in SplitSourceMap() local 127 url = tmp.substr(REAL_URL_INDEX, tmp.size() - REAL_SOURCE_SIZE); in SplitSourceMap() 134 sources_.emplace(url, tmp); in SplitSourceMap() 139 mappings_.emplace(url, tmp); in SplitSourceMap() 336 bool SourceMap::TranslateUrlPositionBySourceMap(std::string& url, int& line, int& column) in TranslateUrlPositionBySourceMap() argument 338 std::string tmp = sources_[url]; in TranslateUrlPositionBySourceMap() 340 LOG_ECMA(ERROR) << "Translate failed, url: " << url; in TranslateUrlPositionBySourceMap() 344 if (url.rfind(".js") != std::string::npos) { in TranslateUrlPositionBySourceMap() 345 url = tmp; in TranslateUrlPositionBySourceMap() 348 auto iterData = sourceMaps_.find(url); in TranslateUrlPositionBySourceMap() [all …]
|
| /arkcompiler/toolchain/tooling/base/ |
| D | pt_script.h | 25 URL, enumerator 32 …PtScript(ScriptId scriptId, const std::string &fileName, const std::string &url, const std::string… 60 void SetUrl(const std::string &url) in SetUrl() argument 62 url_ = url; in SetUrl() 114 std::string sourceMapUrl_ {}; // source map url
|
| D | pt_script.cpp | 21 PtScript::PtScript(ScriptId scriptId, const std::string &fileName, const std::string &url, const st… in PtScript() argument 24 url_(url), in PtScript()
|
| /arkcompiler/ets_runtime/ecmascript/debugger/ |
| D | hot_reload_manager.cpp | 55 std::vector<DebugInfoExtractor *> HotReloadManager::GetPatchExtractors(const std::string &url) const in GetPatchExtractors() 58 auto iter = patchExtractors_.find(url); in GetPatchExtractors() 77 const std::string &url = patchExtractor->GetSourceFile(mainMethodIndex); in ExtractPatch() local 78 if (url.empty()) { in ExtractPatch() 82 patchExtractors_[url].emplace_back(patchExtractor); in ExtractPatch()
|
| D | js_debugger_interface.h | 145 * \brief Remove breakpoints specified by url 146 * @param url file url 149 virtual bool RemoveBreakpointsByUrl(const std::string &url) = 0;
|
| /arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/ |
| D | samples_record.cpp | 186 std::string url = codeEntry.url; in StringifyNodes() local 187 replace(url.begin(), url.end(), '\\', '/'); in StringifyNodes() 192 + std::to_string(codeEntry.scriptId) + "\",\"url\":\"" in StringifyNodes() 193 + url + "\",\"lineNumber\":" in StringifyNodes() 521 frameInfo.url = frameInfoTemps[i].url; in FrameInfoTempToMap() 522 auto iter = scriptIdMap_.find(frameInfo.url); in FrameInfoTempToMap() 524 scriptIdMap_.emplace(frameInfo.url, scriptIdMap_.size() + 1); in FrameInfoTempToMap() 550 frameInfo.url = napiFrameInfoTemps_[i].url; in NapiFrameInfoTempToMap() 551 auto iter = scriptIdMap_.find(frameInfo.url); in NapiFrameInfoTempToMap() 553 scriptIdMap_.emplace(frameInfo.url, scriptIdMap_.size() + 1); in NapiFrameInfoTempToMap() [all …]
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/decorators/ |
| D | test-ts-decorators-17.ts | 17 function POST(url:string):MethodDecorator { 18 print("exec POST, url=", url);
|
| D | test-ts-decorators-17-expected.txt | 1 exec POST, url= /xxx.com
|
| /arkcompiler/toolchain/tooling/agent/ |
| D | debugger_impl.cpp | 94 const std::string &url = extractor->GetSourceFile(mainMethodIndex); in NotifyScriptParsed() local 100 recordNames_[url].insert(recordName); in NotifyScriptParsed() 104 if (MatchUrlAndFileName(url, fileName)) { in NotifyScriptParsed() 107 urlFileNameMap_[url].insert(fileName); in NotifyScriptParsed() 110 …std::unique_ptr<PtScript> script = std::make_unique<PtScript>(g_scriptId++, fileName, url, source); in NotifyScriptParsed() 119 bool DebuggerImpl::SendableScriptParsed(const std::string &fileName, const std::string &url, in SendableScriptParsed() argument 126 recordNames_[url].insert(recordName); in SendableScriptParsed() 131 urlFileNameMap_[url].insert(fileName); in SendableScriptParsed() 133 …std::unique_ptr<PtScript> script = std::make_unique<PtScript>(g_scriptId++, fileName, url, source); in SendableScriptParsed() 174 const std::string &url = extractor->GetSourceFile(methodId); in SendableMethodEntry() local [all …]
|
| D | debugger_impl.h | 43 bool SendableScriptParsed(const std::string &fileName, const std::string &url, 47 bool MatchUrlAndFileName(const std::string &url, const std::string &fileName); 61 void AddBreakpointDetail(const std::string &url, int32_t lineNumber, 112 case ScriptMatchType::URL: { in MatchScripts() 135 std::vector<PtScript *> MatchAllScripts(const std::string &url) const in MatchAllScripts() argument 139 if (url == script.second->GetUrl()) { in MatchAllScripts() 229 std::vector<DebugInfoExtractor *> GetExtractors(const std::string &url); 260 const std::unordered_set<std::string> &GetRecordName(const std::string &url) in GetRecordName() argument 263 auto iter = recordNames_.find(url); in GetRecordName()
|
| /arkcompiler/toolchain/tooling/client/manager/ |
| D | breakpoint_manager.cpp | 53 breaklocation.url = breaksplitstring[3]; // 3: url in Createbreaklocation() 65 std::cout << (i + 1) << ':' << " url:" << breaklist_[i].url; in Show()
|
| /arkcompiler/toolchain/build/prebuilts_download/ |
| D | prebuilts_download.sh | 38 --pypi-url) # python package index url 42 --pypi-url=*) 43 PYPI_URL="${1#--pypi-url=}"
|
| D | prebuilts_download.py | 94 def _copy_url(args, task_id, url, local_file, code_dir, unzip_dir, unzip_filename, mark_file_path): argument 97 progress.console.log('Requesting {}'.format(url)) 101 response = urlopen(url) 103 progress.console.log("Failed to open {}, HTTPError: {}".format(url, e.code), style='red') 112 if not _check_sha256(url, local_file):
|
| /arkcompiler/ets_runtime/ecmascript/jspandafile/ |
| D | debug_info_extractor.h | 96 const std::string &url, const std::unordered_set<std::string> &debugRecordName) in MatchWithLocation() argument 133 // the url for testcases is empty in MatchWithLocation() 134 if (!url.empty() && sourceFile != url) { in MatchWithLocation() 149 return cb(JSPtLocation(jsPandaFile_, methodId, pair.offset, url)); in MatchWithLocation() 160 return cb(JSPtLocation(jsPandaFile_, minColumnMethodId, minColumnOffset, url)); in MatchWithLocation() 163 return cb(JSPtLocation(jsPandaFile_, currentMethodId, currentOffset, url)); in MatchWithLocation()
|
| /arkcompiler/ets_frontend/test/scripts/utils/commit_message/ |
| D | get_commit_message.py | 46 url = url_prefix + name + url_suffix 48 return url 51 def get_html(url): argument 57 response = requests.get(url, headers=headers) 87 url = get_url(repo_name, str(page)) 88 html = get_html(url)
|
| /arkcompiler/ets_frontend/test/scripts/utils/flash_image/ |
| D | burn_image.py | 39 url = data['url_tools'] 40 print(f"Getting RKDevTool from {url}") 41 r = requests.get(url, stream=True)
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | ir_module.cpp | 30 std::string url = debugExtractor->GetSourceFile(methodId); in GetFuncName() local 32 …name += std::string("@") + url + std::string("@") + std::to_string(offset) + std::string("@") + fi… in GetFuncName()
|
| /arkcompiler/toolchain/tooling/client/domain/ |
| D | debugger_client.h | 30 std::string url; member 63 …void AddBreakPointInfo(const std::string& url, const int& lineNumber, const int& columnNumber = 0);
|
| /arkcompiler/ets_frontend/test/scripts/utils/ |
| D | config.yaml | 23 url: '' 35 url: ''
|
| /arkcompiler/ets_frontend/test/scripts/utils/download_sdk_and_image/ |
| D | download.py | 74 url = 'http://ci.openharmony.cn/api/daily_build/build/tasks' 91 post_result = requests.post(url, json=downnload_job) 255 url = item['url'] 258 return url, date, output_path_list 295 print('get download url failed')
|
| /arkcompiler/ets_runtime/tools/ap_file_viewer/ |
| D | package.json | 11 "url": "" string
|
| /arkcompiler/ets_runtime/test/moduletest/builtins/ |
| D | builtinsregexp.js | 25 const url = 'https://designcloud.uiplus.huawei.com/tool//materialServer/upload/images/20210608_5V0J… constant 26 const data = url.match(/(?<=\/)\w+(.jpg)$/);
|
| /arkcompiler/ets_frontend/es2panda/test/benchmark/ |
| D | config.py | 63 CASE_URLS = [{"name": "Octane", "url": "https://github.com/chromium/octane.git", "dir": "."}, 64 …{"name": "Kraken", "url": "https://github.com/mozilla/krakenbenchmark.mozilla.org.git", "dir": "te… 65 …{"name": "Sunspider", "url": "https://github.com/mozilla/krakenbenchmark.mozilla.org.git", "dir": …
|
| /arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/ |
| D | js_stackgetter.h | 73 char url[500] = {0}; // 500:the maximum size of the url member
|