Lines Matching refs:Matches
325 SmallVector<StringRef, 4> Matches; in loadText() local
327 if (!HeadRE.match(Line, &Matches)) in loadText()
330 assert(Matches.size() == 5); in loadText()
331 StringRef FName = Matches[1]; in loadText()
333 Matches[2].getAsInteger(10, NumSamples); in loadText()
334 Matches[3].getAsInteger(10, NumHeadSamples); in loadText()
335 Matches[4].getAsInteger(10, NumSampledLines); in loadText()
343 if (!LineSample.match(Line, &Matches)) in loadText()
345 assert(Matches.size() == 3); in loadText()
347 Matches[1].getAsInteger(10, LineOffset); in loadText()
348 Matches[2].getAsInteger(10, NumSamples); in loadText()