Home
last modified time | relevance | path

Searched full:url (Results 1 – 25 of 90) sorted by relevance

1234

/arkcompiler/toolchain/test/autotest/aw/cdp/
Ddebugger.py26 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/
Dsource_map.cpp121 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/
Dpt_script.h25 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
Dpt_script.cpp21 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/
Dhot_reload_manager.cpp55 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()
Djs_debugger_interface.h145 * \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/
Dsamples_record.cpp186 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/
Dtest-ts-decorators-17.ts17 function POST(url:string):MethodDecorator {
18 print("exec POST, url=", url);
Dtest-ts-decorators-17-expected.txt1 exec POST, url= /xxx.com
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp94 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 …]
Ddebugger_impl.h43 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/
Dbreakpoint_manager.cpp53 breaklocation.url = breaksplitstring[3]; // 3: url in Createbreaklocation()
65 std::cout << (i + 1) << ':' << " url:" << breaklist_[i].url; in Show()
/arkcompiler/toolchain/build/prebuilts_download/
Dprebuilts_download.sh38 --pypi-url) # python package index url
42 --pypi-url=*)
43 PYPI_URL="${1#--pypi-url=}"
Dprebuilts_download.py94 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/
Ddebug_info_extractor.h96 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/
Dget_commit_message.py46 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/
Dburn_image.py39 url = data['url_tools']
40 print(f"Getting RKDevTool from {url}")
41 r = requests.get(url, stream=True)
/arkcompiler/ets_runtime/ecmascript/compiler/
Dir_module.cpp30 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/
Ddebugger_client.h30 std::string url; member
63 …void AddBreakPointInfo(const std::string& url, const int& lineNumber, const int& columnNumber = 0);
/arkcompiler/ets_frontend/test/scripts/utils/
Dconfig.yaml23 url: ''
35 url: ''
/arkcompiler/ets_frontend/test/scripts/utils/download_sdk_and_image/
Ddownload.py74 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/
Dpackage.json11 "url": "" string
/arkcompiler/ets_runtime/test/moduletest/builtins/
Dbuiltinsregexp.js25 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/
Dconfig.py63 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/
Djs_stackgetter.h73 char url[500] = {0}; // 500:the maximum size of the url member

1234