Searched refs:urlRegex (Results 1 - 6 of 6) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
H A D | inspector_server.cpp | 386 } else if (auto urlRegex = params.GetValue<JsonObject::StringT>("urlRegex")) { in OnCallDebuggerSetBreakpointByUrl() 387 sourceFileFilter = [regex = std::regex(*urlRegex)](auto fileName) { in OnCallDebuggerSetBreakpointByUrl() 391 LOG(INFO, DEBUGGER) << "No 'url' or 'urlRegex' properties"; in OnCallDebuggerSetBreakpointByUrl()
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_params.cpp | 357 std::string urlRegex;
in Create() local 358 ret = params.GetString("urlRegex", &urlRegex);
in Create() 360 paramsObject->urlRegex_ = std::move(urlRegex);
in Create() 362 error += "Wrong type of 'urlRegex';";
in Create() 549 if (!params.Contains("urlRegex")) {
in AddRequireParams() 550 params.Add("urlRegex", "");
in AddRequireParams()
|
H A D | pt_types.cpp | 3357 // urlRegex in Create() 3358 std::string urlRegex; in Create() local 3359 ret = params.GetString("urlRegex", &urlRegex); in Create() 3361 paramsObject->urlRegex_ = std::move(urlRegex); in Create() 3363 error += "Wrong type of 'urlRegex';"; in Create() 3399 result->Add("urlRegex", urlRegex_.value().c_str()); in ToJson()
|
/arkcompiler/toolchain/tooling/test/ |
H A D | debugger_impl_test.cpp | 750 "urlRegex":"urlRegex_str", in HWTEST_F_L0() 1344 "urlRegex":"urlRegex_str", in HWTEST_F_L0() 1380 "urlRegex":"urlRegex_str", in HWTEST_F_L0()
|
H A D | debugger_params_test.cpp | 878 "urlRegex":true, "scriptHash":true, "columnNumber":"10", "condition":10}})";
in HWTEST_F_L0() 883 "urlRegex":"testURLRegex", "scriptHash":"testScriptHash", "columnNumber":10, "condition":"testCondition"}})";
in HWTEST_F_L0()
|
H A D | pt_types_test.cpp | 1005 msg = std::string() + R"({"id":0,"method":"Debugger.Test","params":{"condition":"Test","urlRegex":"Test"}})"; in HWTEST_F_L0() 1015 "condition":"Test", "urlRegex":"Test", "scriptHash":"Test", "restrictToFunction": true}})"; in HWTEST_F_L0()
|
Completed in 17 milliseconds