Home
last modified time | relevance | path

Searched refs:functionCoverage (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/toolchain/tooling/test/
Dpt_returns_test.cpp192 std::unique_ptr<FunctionCoverage> functionCoverage = std::make_unique<FunctionCoverage>(); in HWTEST_F_L0() local
193 functionCoverage->SetFunctionName("functionName1"); in HWTEST_F_L0()
194 functionCoverage->SetisBlockCoverage(true); in HWTEST_F_L0()
195 functionCoverage->SetFunctions(std::move(coverages)); in HWTEST_F_L0()
223 std::unique_ptr<FunctionCoverage> functionCoverage = std::make_unique<FunctionCoverage>(); in HWTEST_F_L0() local
224 functionCoverage->SetFunctionName("functionName1"); in HWTEST_F_L0()
225 functionCoverage->SetisBlockCoverage(true); in HWTEST_F_L0()
226 functionCoverage->SetFunctions(std::move(coverages)); in HWTEST_F_L0()
Ddebugger_types_test.cpp2323 std::unique_ptr<FunctionCoverage> functionCoverage; in HWTEST_F_L0() local
2327 functionCoverage = FunctionCoverage::Create(DispatchRequest(msg).GetParams()); in HWTEST_F_L0()
2328 EXPECT_EQ(functionCoverage, nullptr); in HWTEST_F_L0()
2332 functionCoverage = FunctionCoverage::Create(DispatchRequest(msg).GetParams()); in HWTEST_F_L0()
2333 EXPECT_EQ(functionCoverage, nullptr); in HWTEST_F_L0()
2337 functionCoverage = FunctionCoverage::Create(DispatchRequest(msg).GetParams()); in HWTEST_F_L0()
2338 EXPECT_EQ(functionCoverage, nullptr); in HWTEST_F_L0()
2342 functionCoverage = FunctionCoverage::Create(DispatchRequest(msg).GetParams()); in HWTEST_F_L0()
2343 EXPECT_EQ(functionCoverage, nullptr); in HWTEST_F_L0()
2348 functionCoverage = FunctionCoverage::Create(DispatchRequest(msg).GetParams()); in HWTEST_F_L0()
[all …]
/arkcompiler/toolchain/tooling/base/
Dpt_types.cpp2880 auto functionCoverage = std::make_unique<FunctionCoverage>(); in Create() local
2886 functionCoverage->functionName_ = std::move(functionName); in Create()
2902 functionCoverage->ranges_.emplace_back(std::move(pRanges)); in Create()
2912 functionCoverage->isBlockCoverage_ = isBlockCoverage; in Create()
2922 return functionCoverage; in Create()