Lines Matching defs:R
289 auto R = P.produce();
290 if (!R)
291 return R.takeError();
292 if (auto E = C.consume(std::move(R.get())))
301 for (auto &R : FDRRecords)
302 if (auto E = R->apply(Indexer))
314 for (auto *R : B.Records)
315 if (auto E = R->apply(Verifier))
332 const BlockIndexer::Block &R) {
333 return (L.WallclockTime->seconds() < R.WallclockTime->seconds() &&
334 L.WallclockTime->nanos() < R.WallclockTime->nanos());
336 auto Adder = [&](const XRayRecord &R) { Records.push_back(R); };
339 for (auto *R : B.Records)
340 if (auto E = R->apply(Expander))
372 std::back_inserter(Records), [&](const YAMLXRayRecord &R) {
373 return XRayRecord{R.RecordType, R.CPU, R.Type,
374 R.FuncId, R.TSC, R.TId,
375 R.PId, R.CallArgs, R.Data};
473 llvm::stable_sort(T.Records, [&](const XRayRecord &L, const XRayRecord &R) {
474 return L.TSC < R.TSC;