Searched defs:VerifyEndCallback (Results 1 – 1 of 1) sorted by relevance
203 struct VerifyEndCallback : public SourceFileCallbacks { struct204 VerifyEndCallback() : BeginCalled(0), EndCalled(0), Matched(false) {} in VerifyEndCallback() function205 bool handleBeginSource(CompilerInstance &CI, StringRef Filename) override { in handleBeginSource()209 void handleEndSource() override { ++EndCalled; } in handleEndSource()210 std::unique_ptr<ASTConsumer> newASTConsumer() { in newASTConsumer()213 unsigned BeginCalled;214 unsigned EndCalled;215 bool Matched;