Home
last modified time | relevance | path

Searched refs:TestAST (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/clang/include/clang/Testing/
H A DTestAST.h72 class TestAST {
79 TestAST(const TestInputs &);
80 TestAST(StringRef Code) : TestAST(TestInputs(Code)) {} in TestAST() function
81 TestAST(TestAST &&M);
82 TestAST &operator=(TestAST &&);
83 ~TestAST();
/src/contrib/llvm-project/clang/lib/Testing/
H A DTestAST.cpp77 TestAST::TestAST(const TestInputs &In) { in TestAST() function in clang::TestAST
143 void TestAST::clear() { in clear()
157 TestAST &TestAST::operator=(TestAST &&M) { in operator =()
165 TestAST::TestAST(TestAST &&M) { *this = std::move(M); } in TestAST() function in clang::TestAST
167 TestAST::~TestAST() { clear(); } in ~TestAST()