Lines Matching refs:Steps
34 void stepByStep(llvm::ArrayRef<IncrementalTestStep> Steps) { in stepByStep() argument
36 Annotations InitialSrc(Steps.front().Src); in stepByStep()
42 for (size_t i = 1; i < Steps.size(); i++) { in stepByStep()
43 Annotations SrcBefore(Steps[i - 1].Src); in stepByStep()
44 Annotations SrcAfter(Steps[i].Src); in stepByStep()
45 llvm::StringRef Contents = Steps[i - 1].Contents; in stepByStep()
62 void allAtOnce(llvm::ArrayRef<IncrementalTestStep> Steps) { in allAtOnce() argument
64 Annotations InitialSrc(Steps.front().Src); in allAtOnce()
65 Annotations FinalSrc(Steps.back().Src); in allAtOnce()
69 for (size_t i = 0; i < Steps.size() - 1; i++) { in allAtOnce()
70 Annotations Src(Steps[i].Src); in allAtOnce()
71 llvm::StringRef Contents = Steps[i].Contents; in allAtOnce()
94 IncrementalTestStep Steps[] = in TEST() local
126 stepByStep(Steps); in TEST()
127 allAtOnce(Steps); in TEST()
132 IncrementalTestStep Steps[] = in TEST() local
184 stepByStep(Steps); in TEST()
185 allAtOnce(Steps); in TEST()