Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Testing/
H A DTestAST.h34 struct TestInputs { struct
35 TestInputs() = default;
36 TestInputs(StringRef Code) : Code(Code) {} in TestInputs() function
79 TestAST(const TestInputs &);
80 TestAST(StringRef Code) : TestAST(TestInputs(Code)) {} in TestAST()
/freebsd/contrib/llvm-project/clang/lib/Testing/
H A DTestAST.cpp77 TestAST::TestAST(const TestInputs &In) { in TestAST()