Lines Matching refs:move
33 : Region(Region), View(std::move(View)) {} in ExpansionView()
35 : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {} in ExpansionView()
37 Region = std::move(RHS.Region);
38 View = std::move(RHS.View);
59 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {} in InstantiationView()
61 : FunctionName(std::move(RHS.FunctionName)), Line(std::move(RHS.Line)), in InstantiationView()
62 View(std::move(RHS.View)) {} in InstantiationView()
64 FunctionName = std::move(RHS.FunctionName);
65 Line = std::move(RHS.Line);
66 View = std::move(RHS.View);
138 : File(File), Options(Options), CoverageInfo(std::move(CoverageInfo)) {} in SourceCoverageView()
145 ExpansionSubViews.emplace_back(Region, std::move(View)); in addExpansion()
151 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View)); in addInstantiation()