Home
last modified time | relevance | path

Searched defs:VerifyEndCallback (Results 1 – 1 of 1) sorted by relevance

/external/clang/unittests/Tooling/
DToolingTest.cpp203 struct VerifyEndCallback : public SourceFileCallbacks { struct
204 VerifyEndCallback() : BeginCalled(0), EndCalled(0), Matched(false) {} in VerifyEndCallback() function
205 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;