Home
last modified time | relevance | path

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

/external/llvm-project/clang/unittests/AST/
DASTImporterTest.cpp2342 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern); in TEST_P() local
2343 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2344 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
2360 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern); in TEST_P() local
2361 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2362 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
2377 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern); in TEST_P() local
2378 EXPECT_FALSE(ToFD->doesThisDeclarationHaveABody()); in TEST_P()
2379 EXPECT_EQ(ToFD->getPreviousDecl(), ImportedD); in TEST_P()
2395 auto *ToFD = LastDeclMatcher<FunctionDecl>().match(ToTU, Pattern); in TEST_P() local
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DPath.cpp1006 std::error_code copy_file(const Twine &From, int ToFD) { in copy_file() argument
1011 std::error_code EC = copy_file_internal(ReadFD, ToFD); in copy_file()
/external/llvm-project/llvm/lib/Support/
DPath.cpp1033 std::error_code copy_file(const Twine &From, int ToFD) { in copy_file() argument
1038 std::error_code EC = copy_file_internal(ReadFD, ToFD); in copy_file()
/external/llvm-project/llvm/include/llvm/Support/
DFileSystem.h404 std::error_code copy_file(const Twine &From, int ToFD);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DFileSystem.h424 std::error_code copy_file(const Twine &From, int ToFD);
/external/llvm-project/clang/lib/AST/
DASTImporter.cpp462 Error ImportTemplateInformation(FunctionDecl *FromFD, FunctionDecl *ToFD);
464 Error ImportFunctionDeclBody(FunctionDecl *FromFD, FunctionDecl *ToFD);
3009 FunctionDecl *FromFD, FunctionDecl *ToFD) { in ImportTemplateInformation() argument
3020 ToFD->setInstantiationOfMemberFunction(*InstFDOrErr, TSK); in ImportTemplateInformation()
3026 ToFD->getMemberSpecializationInfo()->setPointOfInstantiation(*POIOrErr); in ImportTemplateInformation()
3054 if (Error Err = ImportTemplateParameterLists(FromFD, ToFD)) in ImportTemplateInformation()
3058 ToFD->setFunctionTemplateSpecialization( in ImportTemplateInformation()
3085 ToFD->setDependentTemplateSpecialization(Importer.getToContext(), in ImportTemplateInformation()
3109 FunctionDecl *ToFD) { in ImportFunctionDeclBody() argument
3112 ToFD->setBody(*ToBodyOrErr); in ImportFunctionDeclBody()
/external/clang/lib/AST/
DASTImporter.cpp5970 FieldDecl *ToFD = cast_or_null<FieldDecl>(Importer.Import(FromFD)); in VisitInitListExpr() local
5971 if (!ToFD) in VisitInitListExpr()
5973 To->setInitializedFieldInUnion(ToFD); in VisitInitListExpr()