Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/unittests/libclang/
H A DLibclangTest.cpp461 std::string CppName = "main.cpp"; in TEST_F() local
462 WriteFile(CppName, "int main() {}"); in TEST_F()
463 ClangTU = clang_parseTranslationUnit(Index, CppName.c_str(), nullptr, 0, in TEST_F()
465 CXFile cxf = clang_getFile(ClangTU, CppName.c_str()); in TEST_F()
468 ASSERT_STREQ(clang_getCString(cxname), CppName.c_str()); in TEST_F()
482 std::string CppName = "CppFile.cpp"; in TEST_F() local
483 WriteFile(CppName, CppFile); in TEST_F()
486 ClangTU = clang_parseTranslationUnit(Index, CppName.c_str(), nullptr, 0, in TEST_F()