Lines Matching refs:std

31 void StatisticsComponment::StatisticsDetail(std::vector<std::map<std::string, std::string>> srcDatas,
32 std::map<std::string, std::shared_ptr<Table>> &destTables)
38 std::shared_ptr<ComponmentStatisticsMsg> curComponmentStatisticsMsgPtr = bundle.second;
40 std::vector<std::string> line;
41 std::shared_ptr<ComponmentStatisticsRecord> curComponmentStatisticsRecordPtr = nullptr;
42 std::shared_ptr<ComponmentStatisticsRecord> curBundleAllStatisticsPtr =
43 std::make_shared<ComponmentStatisticsRecord>();
56 std::shared_ptr<Table> table = std::make_shared<Table>(headers_, record_);
64 std::shared_ptr<Table> globalTable = std::make_shared<Table>(headers_, record_);
71 void StatisticsComponment::SrcDatasPretreatment(std::vector<std::map<std::string, std::string>> srcDatas)
77 std::vector<std::string>::iterator globalComponmentTypesIter =
85 std::shared_ptr<ComponmentStatisticsMsg> curStatisticsMsgPtr = std::make_shared<ComponmentStatisticsMsg>();
86 std::map<std::string, std::shared_ptr<ComponmentStatisticsMsg>>::iterator componmentStatisticsMsgIter =
93 std::shared_ptr<ComponmentStatisticsRecord> curComponmentStatisticsRecordPtr =
94 std::make_shared<ComponmentStatisticsRecord>();
124 void StatisticsComponment::UpdateLine(std::shared_ptr<ComponmentStatisticsRecord> ComponmentStatisticsRecordPtr,
125 unsigned int componmentTypeTotal, std::vector<std::string> &line)
127 std::stringstream bufferStream;
128 std::string curComponmentType = ComponmentStatisticsRecordPtr->componmentType_;
129 std::string curExecTimes = std::to_string(ComponmentStatisticsRecordPtr->execTimes_);
130 std::string curProportionStr = "";
131 std::string curInputedTimes = std::to_string(ComponmentStatisticsRecordPtr->inputedTimes_);
132 std::string curExpectInputTimes = std::to_string(ComponmentStatisticsRecordPtr->expectInputTimes_);
133 std::string curCoverageStr = "";
137 bufferStream << std::setiosflags(std::ios::fixed) << std::setprecision(DECIMAL_LENGTH) << proportion;
144 bufferStream << std::setiosflags(std::ios::fixed) << std::setprecision(DECIMAL_LENGTH) << coverage;
157 std::vector<std::string> line;
158 std::shared_ptr<ComponmentStatisticsRecord> globalAllStatisticsPtr = std::make_shared<ComponmentStatisticsRecord>();
161 std::shared_ptr<ComponmentStatisticsRecord> componmentTypeRecordPtr =
162 std::make_shared<ComponmentStatisticsRecord>();
165 std::shared_ptr<ComponmentStatisticsMsg> curComponmentStatisticsMsgPtr = bundle.second;
168 std::shared_ptr<ComponmentStatisticsRecord> curComponmentStatisticsRecordPtr =