Lines Matching refs:detail
20 void PGOBCInfo::Info::Record(const InfoDetail &detail)
22 auto it = methodOffsetToValVec_.find(detail.methodOffset);
24 methodOffsetToValVec_[detail.methodOffset] =
25 ValVec { Val { detail.bcIndex, detail.bcOffset, detail.cpIndex} };
27 it->second.emplace_back(Val{ detail.bcIndex, detail.bcOffset, detail.cpIndex });
29 recordNameToValCount_[detail.recordName]++;
56 void PGOBCInfo::Record(const InfoDetail &detail, Type type)
60 info.Record(detail);