Lines Matching refs:Values
153 SmallVector<StringRef, 4> Values; in ReadV1Profile() local
154 S.split(Values, ' '); in ReadV1Profile()
159 if (Values.size() != 1) { in ReadV1Profile()
163 DIFilename = sys::path::remove_leading_dotslash(Values[0]); in ReadV1Profile()
166 bool FunctionFound = any_of(Values, [&](StringRef Alias) { in ReadV1Profile()
182 for (size_t i = 1; i < Values.size(); ++i) in ReadV1Profile()
183 FuncAliasMap.try_emplace(Values[i], Values.front()); in ReadV1Profile()
187 auto R = ProgramPathAndClusterInfo.try_emplace(Values.front()); in ReadV1Profile()
192 Values.front() + "'"); in ReadV1Profile()
208 for (auto BasicBlockIDStr : Values) { in ReadV1Profile()
229 for (size_t I = 0; I < Values.size(); ++I) { in ReadV1Profile()
230 auto BaseBBIDStr = Values[I]; in ReadV1Profile()