Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Testing/
H A DTestAST.h68 class TestAST {
75 TestAST(const TestInputs &);
76 TestAST(StringRef Code) : TestAST(TestInputs(Code)) {} in TestAST() function
77 TestAST(TestAST &&M);
78 TestAST &operator=(TestAST &&);
79 ~TestAST();
/freebsd-14.2/contrib/llvm-project/clang/lib/Testing/
H A DTestAST.cpp76 TestAST::TestAST(const TestInputs &In) { in TestAST() function in clang::TestAST
140 void TestAST::clear() { in clear()
154 TestAST &TestAST::operator=(TestAST &&M) { in operator =()
162 TestAST::TestAST(TestAST &&M) { *this = std::move(M); } in TestAST() function in clang::TestAST
164 TestAST::~TestAST() { clear(); } in ~TestAST()