Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/unittests/AST/
H A DASTImporterTest.cpp2554 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2555 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
2572 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2573 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
2589 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2590 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
2607 EXPECT_TRUE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2608 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
7278 auto *ToFD = Import(FromFD, Lang_CXX14); in TEST_P() local
7279 EXPECT_TRUE(ToFD); in TEST_P()
[all …]
/llvm-project-15.0.7/llvm/lib/Support/
H A DPath.cpp1035 std::error_code copy_file(const Twine &From, int ToFD) { in copy_file() argument
1040 std::error_code EC = copy_file_internal(ReadFD, ToFD); in copy_file()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTImporter.cpp498 Error ImportTemplateInformation(FunctionDecl *FromFD, FunctionDecl *ToFD);
500 Error ImportFunctionDeclBody(FunctionDecl *FromFD, FunctionDecl *ToFD);
3107 FunctionDecl *FromFD, FunctionDecl *ToFD) { in ImportTemplateInformation() argument
3116 ToFD->setInstantiatedFromDecl(*InstFDOrErr); in ImportTemplateInformation()
3123 ToFD->setInstantiationOfMemberFunction(*InstFDOrErr, TSK); in ImportTemplateInformation()
3129 ToFD->getMemberSpecializationInfo()->setPointOfInstantiation(*POIOrErr); in ImportTemplateInformation()
3157 if (Error Err = ImportTemplateParameterLists(FromFD, ToFD)) in ImportTemplateInformation()
3161 ToFD->setFunctionTemplateSpecialization( in ImportTemplateInformation()
3188 ToFD->setDependentTemplateSpecialization(Importer.getToContext(), in ImportTemplateInformation()
3212 FunctionDecl *ToFD) { in ImportFunctionDeclBody() argument
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFileSystem.h404 std::error_code copy_file(const Twine &From, int ToFD);